Skip to content

Commit

Permalink
change release name and namespace from rollouts to argo-rollouts
Browse files Browse the repository at this point in the history
Signed-off-by: Kent Rancourt <kent.rancourt@gmail.com>
  • Loading branch information
krancour committed Dec 22, 2023
1 parent f68ec80 commit 39b928f
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -258,20 +258,20 @@ hack-install-argocd:

.PHONY: hack-install-argo-rollouts
hack-install-argo-rollouts:
helm upgrade rollouts argo-rollouts \
helm upgrade argo-rollouts argo-rollouts \
--repo https://argoproj.github.io/argo-helm \
--version $(ARGO_ROLLOUTS_CHART_VERSION) \
--install \
--create-namespace \
--namespace rollouts \
--namespace argo-rollouts \
--wait

.PHONY: hack-uninstall-prereqs
hack-uninstall-prereqs: hack-uninstall-argo-rollouts hack-uninstall-argocd hack-uninstall-cert-manager

.PHONY: hack-uninstall-argo-rollouts
hack-uninstall-argo-rollouts:
helm delete rollouts --namespace rollouts
helm delete argo-rollouts --namespace argo-rollouts

.PHONY: hack-uninstall-argocd
hack-uninstall-argocd:
Expand Down
4 changes: 2 additions & 2 deletions hack/quickstart/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ helm install argocd argo-cd \
--set 'server.extensions.contents[0].url=https://github.com/argoproj-labs/rollout-extension/releases/download/v0.3.3/extension.tar' \
--wait

helm install rollouts argo-rollouts \
helm install argo-rollouts argo-rollouts \
--repo https://argoproj.github.io/argo-helm \
--version 2.33.0 \
--create-namespace \
--namespace rollouts \
--namespace argo-rollouts \
--wait

helm install kargo \
Expand Down
4 changes: 2 additions & 2 deletions hack/quickstart/k3d.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,11 @@ helm install argocd argo-cd \
--set 'server.extensions.contents[0].url=https://github.com/argoproj-labs/rollout-extension/releases/download/v0.3.3/extension.tar' \
--wait

helm install rollouts argo-rollouts \
helm install argo-rollouts argo-rollouts \
--repo https://argoproj.github.io/argo-helm \
--version 2.33.0 \
--create-namespace \
--namespace rollouts \
--namespace argo-rollouts \
--wait

helm install kargo \
Expand Down
4 changes: 2 additions & 2 deletions hack/quickstart/kind.sh
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,11 @@ helm install argocd argo-cd \
--set 'server.extensions.contents[0].url=https://github.com/argoproj-labs/rollout-extension/releases/download/v0.3.3/extension.tar' \
--wait

helm install rollouts argo-rollouts \
helm install argo-rollouts argo-rollouts \
--repo https://argoproj.github.io/argo-helm \
--version 2.33.0 \
--create-namespace \
--namespace rollouts \
--namespace argo-rollouts \
--wait

helm install kargo \
Expand Down
2 changes: 1 addition & 1 deletion hack/quickstart/uninstall.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ set -x

helm uninstall kargo --namespace kargo

helm uninstall rollouts --namespace rollouts
helm uninstall argo-rollouts --namespace argo-rollouts

helm uninstall argocd --namespace argocd

Expand Down

0 comments on commit 39b928f

Please sign in to comment.