mirror of https://github.com/helm/helm
go fmt and authheader type (#8)
parent
aff90fe6d4
commit
1b858b33ce
@ -1,13 +1,15 @@
|
||||
package helm
|
||||
|
||||
type AuthHeader string
|
||||
|
||||
const (
|
||||
Authorization = "authorization"
|
||||
K8sServer = "k8s-server"
|
||||
K8sClientCertificate = "k8s-client-certificate"
|
||||
K8sCertificateAuthority = "k8s-certificate-authority"
|
||||
K8sClientKey = "k8s-client-key"
|
||||
Authorization AuthHeader = "authorization"
|
||||
K8sServer AuthHeader = "k8s-server"
|
||||
K8sClientCertificate AuthHeader = "k8s-client-certificate"
|
||||
K8sCertificateAuthority AuthHeader = "k8s-certificate-authority"
|
||||
K8sClientKey AuthHeader = "k8s-client-key"
|
||||
|
||||
// Generated from input keys above
|
||||
K8sUser = "k8s-user"
|
||||
K8sConfig = "k8s-client-config"
|
||||
K8sUser AuthHeader = "k8s-user"
|
||||
K8sConfig AuthHeader = "k8s-client-config"
|
||||
)
|
||||
|
Loading…
Reference in new issue