| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137 |
- /*
- Copyright © 2025 ESO Maintainer Team
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
- https://www.apache.org/licenses/LICENSE-2.0
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- */
- package scaleway
- import (
- "context"
- "sync"
- "github.com/external-secrets/external-secrets-e2e/framework"
- "github.com/external-secrets/external-secrets-e2e/suites/provider/cases/common"
- esv1 "github.com/external-secrets/external-secrets/apis/externalsecrets/v1"
- esmeta "github.com/external-secrets/external-secrets/apis/meta/v1"
- . "github.com/onsi/ginkgo/v2"
- . "github.com/onsi/gomega"
- v1 "k8s.io/api/core/v1"
- metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
- )
- var cleanupOnce sync.Once
- var _ = Describe("[scaleway]", Label("scaleway"), func() {
- f := framework.New("eso-scaleway")
- f.MakeRemoteRefKey = func(base string) string {
- return "name:" + base
- }
- // Initialization is deferred so that assertions work.
- provider := &secretStoreProvider{}
- BeforeEach(func() {
- cfg, err := loadConfigFromEnv()
- Expect(err).ToNot(HaveOccurred())
- provider.init(cfg)
- cleanupOnce.Do(provider.cleanup)
- createResources(GinkgoT().Context(), f, cfg)
- })
- DescribeTable("sync secrets", framework.TableFuncWithExternalSecret(f, provider),
- //Entry(common.SyncV1Alpha1(f)), // not supported
- Entry(common.SimpleDataSync(f)),
- Entry(common.SyncWithoutTargetName(f)),
- Entry(common.JSONDataWithProperty(f)),
- Entry(common.JSONDataWithoutTargetName(f)),
- Entry(common.JSONDataWithTemplate(f)),
- Entry(common.JSONDataWithTemplateFromLiteral(f)),
- Entry(common.TemplateFromConfigmaps(f)),
- Entry(common.JSONDataFromSync(f)),
- Entry(common.JSONDataFromRewrite(f)),
- Entry(common.NestedJSONWithGJSON(f)),
- Entry(common.DockerJSONConfig(f)),
- Entry(common.DataPropertyDockerconfigJSON(f)),
- Entry(common.SSHKeySync(f)),
- Entry(common.SSHKeySyncDataProperty(f)),
- Entry(common.DeletionPolicyDelete(f)),
- //Entry(common.DecodingPolicySync(f)), // not supported
- Entry(common.FindByName(f)),
- Entry(common.FindByNameAndRewrite(f)),
- //Entry(common.FindByNameWithPath(f)), // not supported
- Entry(common.FindByTag(f)),
- //Entry(common.FindByTagWithPath(f)), // not supported
- )
- })
- func createResources(ctx context.Context, f *framework.Framework, cfg *config) {
- apiKeySecretName := "scw-api-key"
- apiKeySecretKey := "secret-key"
- // Creating a secret to hold the API key.
- secretSpec := v1.Secret{
- ObjectMeta: metav1.ObjectMeta{
- Name: apiKeySecretName,
- Namespace: f.Namespace.Name,
- },
- StringData: map[string]string{
- "secret-key": cfg.secretKey,
- },
- }
- err := f.CRClient.Create(ctx, &secretSpec)
- Expect(err).ToNot(HaveOccurred())
- // Creating SecretStore.
- secretStoreSpec := esv1.SecretStore{
- ObjectMeta: metav1.ObjectMeta{
- Name: f.Namespace.Name,
- Namespace: f.Namespace.Name,
- },
- Spec: esv1.SecretStoreSpec{
- Provider: &esv1.SecretStoreProvider{
- Scaleway: &esv1.ScalewayProvider{
- Region: cfg.region,
- ProjectID: cfg.projectId,
- AccessKey: &esv1.ScalewayProviderSecretRef{
- Value: cfg.accessKey, // TODO: test with secretRef as well
- },
- SecretKey: &esv1.ScalewayProviderSecretRef{
- SecretRef: &esmeta.SecretKeySelector{
- Name: apiKeySecretName,
- Key: apiKeySecretKey,
- },
- },
- },
- },
- },
- }
- if cfg.apiUrl != nil {
- secretStoreSpec.Spec.Provider.Scaleway.APIURL = *cfg.apiUrl
- }
- err = f.CRClient.Create(ctx, &secretStoreSpec)
- Expect(err).ToNot(HaveOccurred())
- }
|