Skip to content

Commit

Permalink
Merge pull request #14 from snapp-incubator/renabme-prefix
Browse files Browse the repository at this point in the history
renamed basicauth prefix
  • Loading branch information
sinamna authored Dec 10, 2023
2 parents ba2c29b + 2479cf3 commit e34c8c2
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 simpleauthenticator-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
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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=<some-registry>/<project-name-bundle>:<tag>)
Expand Down Expand Up @@ -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
$(KUSTOMIZE) build config/default | $(HELMIFY) charts/simple-authenticator
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# basicauthenticator
# simpleauthenticator
// TODO(user): Add simple overview of use/purpose

## Description
Expand Down
4 changes: 2 additions & 2 deletions config/default/kustomization.yaml
Original file line number Diff line number Diff line change
@@ -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:
Expand Down

0 comments on commit e34c8c2

Please sign in to comment.