Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

renamed basicauth prefix #14

Merged
merged 2 commits into from
Dec 10, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 basicauthenticator-system
sinamna marked this conversation as resolved.
Show resolved Hide resolved
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
Loading