Prechádzať zdrojové kódy

test fix doppler issue on OC

Gustavo Carvalho 2 rokov pred
rodič
commit
4c66999362

+ 5 - 0
apis/externalsecrets/v1alpha1/secretstore_types.go

@@ -91,7 +91,12 @@ type SecretStoreProvider struct {
 	// Fake configures a store with static key/value pairs
 	// +optional
 	Fake *FakeProvider `json:"fake,omitempty"`
+
+	// Doppler
+	// +optional
+	Doppler *Stub `json:"doppler,omitempty"`
 }
+type Stub struct{}
 
 type SecretStoreRetrySettings struct {
 	MaxRetries    *int32  `json:"maxRetries,omitempty"`

+ 20 - 0
apis/externalsecrets/v1alpha1/zz_generated.deepcopy.go

@@ -1470,6 +1470,11 @@ func (in *SecretStoreProvider) DeepCopyInto(out *SecretStoreProvider) {
 		*out = new(FakeProvider)
 		(*in).DeepCopyInto(*out)
 	}
+	if in.Doppler != nil {
+		in, out := &in.Doppler, &out.Doppler
+		*out = new(Stub)
+		**out = **in
+	}
 }
 
 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecretStoreProvider.
@@ -1601,6 +1606,21 @@ func (in *ServiceAccountAuth) DeepCopy() *ServiceAccountAuth {
 	return out
 }
 
+// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
+func (in *Stub) DeepCopyInto(out *Stub) {
+	*out = *in
+}
+
+// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Stub.
+func (in *Stub) DeepCopy() *Stub {
+	if in == nil {
+		return nil
+	}
+	out := new(Stub)
+	in.DeepCopyInto(out)
+	return out
+}
+
 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
 func (in SyncedPushSecretsMap) DeepCopyInto(out *SyncedPushSecretsMap) {
 	{

+ 3 - 0
config/crds/bases/external-secrets.io_clustersecretstores.yaml

@@ -515,6 +515,9 @@ spec:
                     required:
                     - vaultUrl
                     type: object
+                  doppler:
+                    description: Doppler
+                    type: object
                   fake:
                     description: Fake configures a store with static key/value pairs
                     properties:

+ 3 - 0
config/crds/bases/external-secrets.io_secretstores.yaml

@@ -515,6 +515,9 @@ spec:
                     required:
                     - vaultUrl
                     type: object
+                  doppler:
+                    description: Doppler
+                    type: object
                   fake:
                     description: Fake configures a store with static key/value pairs
                     properties:

+ 6 - 0
deploy/crds/bundle.yaml

@@ -1135,6 +1135,9 @@ spec:
                       required:
                         - vaultUrl
                       type: object
+                    doppler:
+                      description: Doppler
+                      type: object
                     fake:
                       description: Fake configures a store with static key/value pairs
                       properties:
@@ -6480,6 +6483,9 @@ spec:
                       required:
                         - vaultUrl
                       type: object
+                    doppler:
+                      description: Doppler
+                      type: object
                     fake:
                       description: Fake configures a store with static key/value pairs
                       properties: