Two argocd in two namespace can view each other namespace deployments? #10819
BinaryWorld2099
started this conversation in
Ideas
Replies: 1 comment 2 replies
-
Yes, see the e.g: kubectl create namespace argocd-one
kubectl apply -n argocd-one -f namespace-install.yaml With this method, you may need to setup |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have two git repositories, one for testing, one for development in single k8s cluster for QA and dev teams
cmd:
helm install test-argocd -n test-argocd --create-namespace
helm install dev-argocd -n dev-argocd --create-namespace
namespace test, install an argocd
namespace dev, install an argocd
But test namespace argocd can view deployment in dev namespace argocd, vice versa
seems argocd can view all deployment in all namespaces.
Is it possible to isolate the two argocd in their namespace only?
Is it possible to install two argocd complete separately include deployment, service account, role binding in different namesapces?
Another issue I faced was that, after successfully install test-argocd and dev-argocd
with kubectl get pod -n test-argocd, it seems deploy two sets of argocd like below in test-argocd and dev-argocd
in test-argocd namespace:
test-argocd-application-controller-0
test-argocd-applicationset-controller-3gh6e4r-dwt2w
test-argocd-dex-server-gese45-x8dz8
test-argocd-notifications-controller-gerg6t352-n9lxn
test-argocd-redis-fsef7y67-te4gr
test-argocd-repo-server-654rgegr-jygjy
test-argocd-server-gers45-54165
argocd-application-controller-0
argocd-applicationset-controller-6676c4d655-dwt2w
argocd-dex-server-5f9bd56758-x8dz8
argocd-notifications-controller-5bc766fc6d-n9lxn
argocd-redis-6fd7cbd95d-tltqz
argocd-repo-server-5bb545d667-vcjgz
argocd-server-6b88fbcbb8-j4kf7
It is because of the selfheal healing?
Beta Was this translation helpful? Give feedback.
All reactions