Nishit Goel
Nishit Goel
@vavdoshka , Hi Thanks for sharing. Will these `{{ repository }}.{{ branch }}` `{{ url }}` `{{ branch }}` gets automatically updated once developer creates new branch and commit some...
@vavdoshka Hi, This is my yaml file ``` apiVersion: argoproj.io/v1alpha1 kind: ApplicationSet metadata: name: example-approot namespace: argocd spec: generators: - scmProvider: cloneProtocol: https gitlab: group: "gitops-argo/gitops-dev" allBranches: true tokenRef: secretName:...
@vavdoshka , Yes I was using **Deploy tokens** and now I used "Personal Access Token". Now Argocd is able to access. Yes with `name: '{{ repository }}'` Argocd was not...
@vavdoshka, Thanks for the information and all help. I used `repository template secret` and It worked.
@vavdoshka Hi, I need your help again with the Argocd image updater. I posted the issue on their Github repo but didn't get any answer there. Here is the link...
@vavdoshka Can we use SCM provider with Git SCM ( bare repository)? I am not using Gitlab or Github. I am hosting my own Git server. Or we can use...
@vavdoshka Ok, thanks Are there any way I can create a namespace same as branch name with any other Argo Generator.
I have deployed 1 PVC with a WordPress pod. Now I want to add another PVC without touching the main manifest files. Now my question is can I do this...
Yes, I meant the same and doing same as you mentioned. This is my WordPress.YAML file in base. ``` apiVersion: v1 kind: Service metadata: name: wordpress labels: app: wordpress spec:...
Here is kustomize.yaml from base dir ``` apiVersion: kustomize.config.k8s.io/v1beta1 kind: Kustomization resources: - wordpress.yaml ``` Here is kustomize.yaml from overlays/production dir ``` bases: - ../../base patches: - path: add-pvc.yaml ```