Commit a78a0098 authored by Victor Marmol's avatar Victor Marmol

Merge pull request #6249 from TamerTas/typo

Fix typo in Secrets
parents bb0f613d 6c10cf7b
...@@ -277,7 +277,7 @@ type Secret struct { ...@@ -277,7 +277,7 @@ type Secret struct {
// representing the arbitrary (possibly non-string) data value here. // representing the arbitrary (possibly non-string) data value here.
Data map[string][]byte `json:"data,omitempty"` Data map[string][]byte `json:"data,omitempty"`
// Used to facilitate programatic handling of secret data. // Used to facilitate programmatic handling of secret data.
Type SecretType `json:"type,omitempty"` Type SecretType `json:"type,omitempty"`
} }
......
...@@ -1643,7 +1643,7 @@ type Secret struct { ...@@ -1643,7 +1643,7 @@ type Secret struct {
// representing the arbitrary (possibly non-string) data value here. // representing the arbitrary (possibly non-string) data value here.
Data map[string][]byte `json:"data,omitempty"` Data map[string][]byte `json:"data,omitempty"`
// Used to facilitate programatic handling of secret data. // Used to facilitate programmatic handling of secret data.
Type SecretType `json:"type,omitempty"` Type SecretType `json:"type,omitempty"`
} }
......
...@@ -1451,7 +1451,7 @@ type Secret struct { ...@@ -1451,7 +1451,7 @@ type Secret struct {
// representing the arbitrary (possibly non-string) data value here. // representing the arbitrary (possibly non-string) data value here.
Data map[string][]byte `json:"data,omitempty" description:"data contains the secret data. Each key must be a valid DNS_SUBDOMAIN. Each value must be a base64 encoded string"` Data map[string][]byte `json:"data,omitempty" description:"data contains the secret data. Each key must be a valid DNS_SUBDOMAIN. Each value must be a base64 encoded string"`
// Used to facilitate programatic handling of secret data. // Used to facilitate programmatic handling of secret data.
Type SecretType `json:"type,omitempty" description:"type facilitates programmatic handling of secret data"` Type SecretType `json:"type,omitempty" description:"type facilitates programmatic handling of secret data"`
} }
......
...@@ -1514,7 +1514,7 @@ type Secret struct { ...@@ -1514,7 +1514,7 @@ type Secret struct {
// representing the arbitrary (possibly non-string) data value here. // representing the arbitrary (possibly non-string) data value here.
Data map[string][]byte `json:"data,omitempty" description:"data contains the secret data. Each key must be a valid DNS_SUBDOMAIN. Each value must be a base64 encoded string"` Data map[string][]byte `json:"data,omitempty" description:"data contains the secret data. Each key must be a valid DNS_SUBDOMAIN. Each value must be a base64 encoded string"`
// Used to facilitate programatic handling of secret data. // Used to facilitate programmatic handling of secret data.
Type SecretType `json:"type,omitempty" description:"type facilitates programmatic handling of secret data"` Type SecretType `json:"type,omitempty" description:"type facilitates programmatic handling of secret data"`
} }
......
...@@ -1548,7 +1548,7 @@ type Secret struct { ...@@ -1548,7 +1548,7 @@ type Secret struct {
// representing the arbitrary (possibly non-string) data value here. // representing the arbitrary (possibly non-string) data value here.
Data map[string][]byte `json:"data,omitempty" description:"data contains the secret data. Each key must be a valid DNS_SUBDOMAIN. Each value must be a base64 encoded string"` Data map[string][]byte `json:"data,omitempty" description:"data contains the secret data. Each key must be a valid DNS_SUBDOMAIN. Each value must be a base64 encoded string"`
// Used to facilitate programatic handling of secret data. // Used to facilitate programmatic handling of secret data.
Type SecretType `json:"type,omitempty" description:"type facilitates programmatic handling of secret data"` Type SecretType `json:"type,omitempty" description:"type facilitates programmatic handling of secret data"`
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment