From 2f8d91021d380fca29e384bf1718403728dc51cf Mon Sep 17 00:00:00 2001 From: Sina Date: Sun, 10 Dec 2023 12:16:38 +0330 Subject: [PATCH] renamed basicauth prefix --- .github/workflows/test.yaml | 4 ++-- Makefile | 6 +++--- README.md | 2 +- config/default/kustomization.yaml | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 2c914e0..f0f7c74 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -48,7 +48,7 @@ jobs: - name: Wait for basic operator to be ready run: | - kubectl wait --for=condition=available --timeout=300s deployment.apps/basicauthenticator-controller-manager -n basicauthenticator-system - kubectl wait --for=condition=ContainersReady --timeout=300s pods -n basicauthenticator-system --selector=control-plane=controller-manager + kubectl wait --for=condition=available --timeout=300s deployment.apps/simpleauthenticator-controller-manager -n basicauthenticator-system + kubectl wait --for=condition=ContainersReady --timeout=300s pods -n simpleauthenticator-system --selector=control-plane=controller-manager - name: Run e2e test run: make e2e-test \ No newline at end of file diff --git a/Makefile b/Makefile index 8c3ed9e..11f3d13 100644 --- a/Makefile +++ b/Makefile @@ -28,8 +28,8 @@ BUNDLE_METADATA_OPTS ?= $(BUNDLE_CHANNELS) $(BUNDLE_DEFAULT_CHANNEL) # This variable is used to construct full image tags for bundle and catalog images. # # For example, running 'make bundle-build bundle-push catalog-build catalog-push' will build and push both -# snappcloud.io/basicauthenticator-bundle:$VERSION and snappcloud.io/basicauthenticator-catalog:$VERSION. -IMAGE_TAG_BASE ?= snappcloud.io/basicauthenticator +# snappcloud.io/simpleauthenticator-bundle:$VERSION and snappcloud.io/simpleauthenticator-catalog:$VERSION. +IMAGE_TAG_BASE ?= snappcloud.io/simpleauthenticator # BUNDLE_IMG defines the image:tag used for the bundle. # You can use it as an arg. (E.g make bundle-build BUNDLE_IMG=/:) @@ -299,4 +299,4 @@ $(HELMIFY): $(LOCALBIN) test -s $(LOCALBIN)/helmify || GOBIN=$(LOCALBIN) go install github.com/arttor/helmify/cmd/helmify@latest helm: manifests kustomize helmify - $(KUSTOMIZE) build config/default | $(HELMIFY) deploy/charts/simple-authenticator \ No newline at end of file + $(KUSTOMIZE) build config/default | $(HELMIFY) charts/simple-authenticator \ No newline at end of file diff --git a/README.md b/README.md index 23d8d4b..29c3f7b 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# basicauthenticator +# simpleauthenticator // TODO(user): Add simple overview of use/purpose ## Description diff --git a/config/default/kustomization.yaml b/config/default/kustomization.yaml index 9b27f02..e1afb67 100644 --- a/config/default/kustomization.yaml +++ b/config/default/kustomization.yaml @@ -1,12 +1,12 @@ # Adds namespace to all resources. -namespace: basicauthenticator-system +namespace: simpleauthenticator-system # Value of this field is prepended to the # names of all resources, e.g. a deployment named # "wordpress" becomes "alices-wordpress". # Note that it should also match with the prefix (text before '-') of the namespace # field above. -namePrefix: basicauthenticator- +namePrefix: simpleauthenticator- # Labels to add to all resources and selectors. #labels: