mirror of
https://github.com/external-secrets/external-secrets.git
synced 2024-12-14 11:57:59 +00:00
fix: error strings
This commit is contained in:
parent
aca08e09d9
commit
21df9b5729
3 changed files with 3 additions and 8 deletions
|
@ -279,8 +279,6 @@ spec:
|
|||
cluster-scoped defaults to the namespace of
|
||||
the referent.
|
||||
type: string
|
||||
required:
|
||||
- name
|
||||
type: object
|
||||
type: object
|
||||
required:
|
||||
|
|
|
@ -279,8 +279,6 @@ spec:
|
|||
cluster-scoped defaults to the namespace of
|
||||
the referent.
|
||||
type: string
|
||||
required:
|
||||
- name
|
||||
type: object
|
||||
type: object
|
||||
required:
|
||||
|
|
|
@ -35,11 +35,10 @@ import (
|
|||
// Requires GITLAB_TOKEN and GITLAB_PROJECT_ID to be set in environment variables
|
||||
|
||||
const (
|
||||
// TODO: Make these more descriptive.
|
||||
errGitlabCredSecretName = "error with credentials"
|
||||
errInvalidClusterStoreMissingSAKNamespace = "error"
|
||||
errGitlabCredSecretName = "credentials are empty"
|
||||
errInvalidClusterStoreMissingSAKNamespace = "invalid clusterStore missing SAK namespace"
|
||||
errFetchSAKSecret = "couldn't find secret on cluster: %w"
|
||||
errMissingSAK = "error"
|
||||
errMissingSAK = "missing credentials while setting auth"
|
||||
errUninitalizedGitlabProvider = "provider gitlab is not initialized"
|
||||
errJSONSecretUnmarshal = "unable to unmarshal secret: %w"
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue