├── .gitignore ├── README.md ├── Video_01 └── README.md ├── Video_02 ├── README.md ├── argo-cd-5.8.2.tgz ├── argo-cd │ ├── .helmignore │ ├── Chart.lock │ ├── Chart.yaml │ ├── README.md │ ├── charts │ │ └── redis-ha │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── ci │ │ │ └── haproxy-enabled-values.yaml │ │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── _configs.tpl │ │ │ ├── _helpers.tpl │ │ │ ├── redis-auth-secret.yaml │ │ │ ├── redis-ha-announce-service.yaml │ │ │ ├── redis-ha-configmap.yaml │ │ │ ├── redis-ha-exporter-script-configmap.yaml │ │ │ ├── redis-ha-health-configmap.yaml │ │ │ ├── redis-ha-network-policy.yaml │ │ │ ├── redis-ha-pdb.yaml │ │ │ ├── redis-ha-prometheus-rule.yaml │ │ │ ├── redis-ha-role.yaml │ │ │ ├── redis-ha-rolebinding.yaml │ │ │ ├── redis-ha-secret.yaml │ │ │ ├── redis-ha-service.yaml │ │ │ ├── redis-ha-serviceaccount.yaml │ │ │ ├── redis-ha-servicemonitor.yaml │ │ │ ├── redis-ha-statefulset.yaml │ │ │ ├── redis-haproxy-deployment.yaml │ │ │ ├── redis-haproxy-pdb.yaml │ │ │ ├── redis-haproxy-role.yaml │ │ │ ├── redis-haproxy-rolebinding.yaml │ │ │ ├── redis-haproxy-service.yaml │ │ │ ├── redis-haproxy-serviceaccount.yaml │ │ │ ├── redis-haproxy-servicemonitor.yaml │ │ │ ├── redis-tls-secret.yaml │ │ │ ├── sentinel-auth-secret.yaml │ │ │ └── tests │ │ │ │ ├── test-redis-ha-configmap.yaml │ │ │ │ └── test-redis-ha-pod.yaml │ │ │ └── values.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _common.tpl │ │ ├── _helpers.tpl │ │ ├── _versions.tpl │ │ ├── aggregate-roles.yaml │ │ ├── argocd-application-controller │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── metrics.yaml │ │ │ ├── networkpolicy.yaml │ │ │ ├── pdb.yaml │ │ │ ├── prometheusrule.yaml │ │ │ ├── role.yaml │ │ │ ├── rolebinding.yaml │ │ │ ├── serviceaccount.yaml │ │ │ ├── servicemonitor.yaml │ │ │ └── statefulset.yaml │ │ ├── argocd-applicationset │ │ │ ├── deployment.yaml │ │ │ ├── metrics.yaml │ │ │ ├── networkpolicy.yaml │ │ │ ├── pdb.yaml │ │ │ ├── role.yaml │ │ │ ├── rolebinding.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ ├── servicemonitor.yaml │ │ │ └── webhook-ingress.yaml │ │ ├── argocd-configs │ │ │ ├── argocd-cm.yaml │ │ │ ├── argocd-cmd-params-cm.yaml │ │ │ ├── argocd-gpg-keys-cm.yaml │ │ │ ├── argocd-notifications-cm.yaml │ │ │ ├── argocd-notifications-secret.yaml │ │ │ ├── argocd-rbac-cm.yaml │ │ │ ├── argocd-secret.yaml │ │ │ ├── argocd-ssh-known-hosts-cm.yaml │ │ │ ├── argocd-styles-cm.yaml │ │ │ ├── argocd-tls-certs-cm.yaml │ │ │ ├── cluster-secrets.yaml │ │ │ ├── externalredis-secret.yaml │ │ │ ├── repository-credentials-secret.yaml │ │ │ └── repository-secret.yaml │ │ ├── argocd-notifications │ │ │ ├── bots │ │ │ │ └── slack │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ ├── pdb.yaml │ │ │ │ │ ├── role.yaml │ │ │ │ │ ├── rolebinding.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ └── serviceaccount.yaml │ │ │ ├── deployment.yaml │ │ │ ├── metrics.yaml │ │ │ ├── networkpolicy.yaml │ │ │ ├── pdb.yaml │ │ │ ├── role.yaml │ │ │ ├── rolebinding.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── servicemonitor.yaml │ │ ├── argocd-repo-server │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── deployment.yaml │ │ │ ├── hpa.yaml │ │ │ ├── metrics.yaml │ │ │ ├── networkpolicy.yaml │ │ │ ├── pdb.yaml │ │ │ ├── role.yaml │ │ │ ├── rolebinding.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── servicemonitor.yaml │ │ ├── argocd-server │ │ │ ├── aws │ │ │ │ └── service.yaml │ │ │ ├── certificate.yaml │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── deployment.yaml │ │ │ ├── gke │ │ │ │ ├── backendconfig.yaml │ │ │ │ ├── frontendconfig.yaml │ │ │ │ └── managedcertificate.yaml │ │ │ ├── hpa.yaml │ │ │ ├── ingress-grpc.yaml │ │ │ ├── ingress.yaml │ │ │ ├── metrics.yaml │ │ │ ├── networkpolicy.yaml │ │ │ ├── openshift │ │ │ │ └── route.yaml │ │ │ ├── pdb.yaml │ │ │ ├── role.yaml │ │ │ ├── rolebinding.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── servicemonitor.yaml │ │ ├── crds │ │ │ ├── crd-application.yaml │ │ │ ├── crd-applicationset.yaml │ │ │ ├── crd-extension.yaml │ │ │ └── crd-project.yaml │ │ ├── dex │ │ │ ├── deployment.yaml │ │ │ ├── networkpolicy.yaml │ │ │ ├── pdb.yaml │ │ │ ├── role.yaml │ │ │ ├── rolebinding.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── servicemonitor.yaml │ │ ├── extra-manifests.yaml │ │ ├── networkpolicy-default-deny.yaml │ │ └── redis │ │ │ ├── deployment.yaml │ │ │ ├── metrics.yaml │ │ │ ├── networkpolicy.yaml │ │ │ ├── pdb.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── servicemonitor.yaml │ ├── values-custom.yaml │ └── values.yaml ├── argocd-manifests │ ├── application.yaml │ ├── project.yaml │ └── repository.yaml └── images │ └── Captura de pantalla 2023-01-14 a las 12.08.59.png ├── Video_03 ├── Makefile ├── README.md ├── argocd-manifests │ ├── image-updater.yaml │ ├── nginx-demo-arm.yaml │ └── project-argocd-demo.yaml ├── docker │ └── nginx │ │ ├── Dockerfile │ │ └── README.md ├── k8s │ └── git-secret.yaml └── nginx-demo │ └── arm │ └── kustomize │ ├── base │ ├── deployment.yaml │ ├── kustomization.yaml │ └── service.yaml │ └── overlays │ └── testing │ └── kustomization.yaml ├── Video_04 ├── Makefile ├── README.md ├── argocd-manifests │ ├── applicationset1.yaml │ ├── applicationset2.yaml │ ├── project-appset1.yaml │ ├── project-appset2.yaml │ ├── project-argocd-demo.yaml │ └── repository.yaml └── k8s │ ├── git-secret.yaml │ ├── namespaces1.yaml │ └── namespaces2.yaml ├── Video_05 ├── Makefile ├── README.md ├── argocd-manifests │ ├── application.yaml │ └── project-argocd-demo.yaml └── values-custom.yaml └── official ├── argo-cd ├── .helmignore ├── 4.22.5 │ ├── .helmignore │ ├── Chart.lock │ ├── Chart.yaml │ ├── README.md │ ├── charts │ │ └── redis-ha │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── ci │ │ │ └── haproxy-enabled-values.yaml │ │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── _configs.tpl │ │ │ ├── _helpers.tpl │ │ │ ├── redis-auth-secret.yaml │ │ │ ├── redis-ha-announce-service.yaml │ │ │ ├── redis-ha-configmap.yaml │ │ │ ├── redis-ha-exporter-script-configmap.yaml │ │ │ ├── redis-ha-health-configmap.yaml │ │ │ ├── redis-ha-network-policy.yaml │ │ │ ├── redis-ha-pdb.yaml │ │ │ ├── redis-ha-prometheus-rule.yaml │ │ │ ├── redis-ha-role.yaml │ │ │ ├── redis-ha-rolebinding.yaml │ │ │ ├── redis-ha-secret.yaml │ │ │ ├── redis-ha-service.yaml │ │ │ ├── redis-ha-serviceaccount.yaml │ │ │ ├── redis-ha-servicemonitor.yaml │ │ │ ├── redis-ha-statefulset.yaml │ │ │ ├── redis-haproxy-deployment.yaml │ │ │ ├── redis-haproxy-pdb.yaml │ │ │ ├── redis-haproxy-role.yaml │ │ │ ├── redis-haproxy-rolebinding.yaml │ │ │ ├── redis-haproxy-service.yaml │ │ │ ├── redis-haproxy-serviceaccount.yaml │ │ │ ├── redis-haproxy-servicemonitor.yaml │ │ │ ├── redis-tls-secret.yaml │ │ │ ├── sentinel-auth-secret.yaml │ │ │ └── tests │ │ │ │ ├── test-redis-ha-configmap.yaml │ │ │ │ └── test-redis-ha-pod.yaml │ │ │ └── values.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _common.tpl │ │ ├── _helpers.tpl │ │ ├── _versions.tpl │ │ ├── aggregate-roles.yaml │ │ ├── argocd-application-controller │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── metrics.yaml │ │ │ ├── networkpolicy.yaml │ │ │ ├── pdb.yaml │ │ │ ├── prometheusrule.yaml │ │ │ ├── role.yaml │ │ │ ├── rolebinding.yaml │ │ │ ├── serviceaccount.yaml │ │ │ ├── servicemonitor.yaml │ │ │ └── statefulset.yaml │ │ ├── argocd-applicationset │ │ │ ├── deployment.yaml │ │ │ ├── metrics.yaml │ │ │ ├── networkpolicy.yaml │ │ │ ├── pdb.yaml │ │ │ ├── role.yaml │ │ │ ├── rolebinding.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ ├── servicemonitor.yaml │ │ │ └── webhook-ingress.yaml │ │ ├── argocd-configs │ │ │ ├── argocd-cm.yaml │ │ │ ├── argocd-cmd-params-cm.yaml │ │ │ ├── argocd-cmp-cm.yaml │ │ │ ├── argocd-dex-server-tls-secret.yaml │ │ │ ├── argocd-gpg-keys-cm.yaml │ │ │ ├── argocd-notifications-cm.yaml │ │ │ ├── argocd-notifications-secret.yaml │ │ │ ├── argocd-rbac-cm.yaml │ │ │ ├── argocd-repo-server-tls-secret.yaml │ │ │ ├── argocd-secret.yaml │ │ │ ├── argocd-server-tls-secret.yaml │ │ │ ├── argocd-ssh-known-hosts-cm.yaml │ │ │ ├── argocd-styles-cm.yaml │ │ │ ├── argocd-tls-certs-cm.yaml │ │ │ ├── cluster-secrets.yaml │ │ │ ├── externalredis-secret.yaml │ │ │ ├── repository-credentials-secret.yaml │ │ │ └── repository-secret.yaml │ │ ├── argocd-notifications │ │ │ ├── deployment.yaml │ │ │ ├── metrics.yaml │ │ │ ├── networkpolicy.yaml │ │ │ ├── pdb.yaml │ │ │ ├── role.yaml │ │ │ ├── rolebinding.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── servicemonitor.yaml │ │ ├── argocd-repo-server │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── deployment.yaml │ │ │ ├── hpa.yaml │ │ │ ├── metrics.yaml │ │ │ ├── networkpolicy.yaml │ │ │ ├── pdb.yaml │ │ │ ├── role.yaml │ │ │ ├── rolebinding.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── servicemonitor.yaml │ │ ├── argocd-server │ │ │ ├── aws │ │ │ │ └── service.yaml │ │ │ ├── certificate.yaml │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── deployment.yaml │ │ │ ├── gke │ │ │ │ ├── backendconfig.yaml │ │ │ │ ├── frontendconfig.yaml │ │ │ │ └── managedcertificate.yaml │ │ │ ├── hpa.yaml │ │ │ ├── ingress-grpc.yaml │ │ │ ├── ingress.yaml │ │ │ ├── metrics.yaml │ │ │ ├── networkpolicy.yaml │ │ │ ├── openshift │ │ │ │ └── route.yaml │ │ │ ├── pdb.yaml │ │ │ ├── role.yaml │ │ │ ├── rolebinding.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── servicemonitor.yaml │ │ ├── crds │ │ │ ├── crd-application.yaml │ │ │ ├── crd-applicationset.yaml │ │ │ ├── crd-extension.yaml │ │ │ └── crd-project.yaml │ │ ├── dex │ │ │ ├── deployment.yaml │ │ │ ├── networkpolicy.yaml │ │ │ ├── pdb.yaml │ │ │ ├── role.yaml │ │ │ ├── rolebinding.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── servicemonitor.yaml │ │ ├── extra-manifests.yaml │ │ ├── networkpolicy-default-deny.yaml │ │ └── redis │ │ │ ├── deployment.yaml │ │ │ ├── metrics.yaml │ │ │ ├── networkpolicy.yaml │ │ │ ├── pdb.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── servicemonitor.yaml │ └── values.yaml ├── 5.45.5 │ ├── .helmignore │ ├── Chart.lock │ ├── Chart.yaml │ ├── README.md │ ├── charts │ │ └── redis-ha │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── ci │ │ │ └── haproxy-enabled-values.yaml │ │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── _configs.tpl │ │ │ ├── _helpers.tpl │ │ │ ├── redis-auth-secret.yaml │ │ │ ├── redis-ha-announce-service.yaml │ │ │ ├── redis-ha-configmap.yaml │ │ │ ├── redis-ha-exporter-script-configmap.yaml │ │ │ ├── redis-ha-health-configmap.yaml │ │ │ ├── redis-ha-network-policy.yaml │ │ │ ├── redis-ha-pdb.yaml │ │ │ ├── redis-ha-prometheus-rule.yaml │ │ │ ├── redis-ha-role.yaml │ │ │ ├── redis-ha-rolebinding.yaml │ │ │ ├── redis-ha-secret.yaml │ │ │ ├── redis-ha-service.yaml │ │ │ ├── redis-ha-serviceaccount.yaml │ │ │ ├── redis-ha-servicemonitor.yaml │ │ │ ├── redis-ha-statefulset.yaml │ │ │ ├── redis-haproxy-deployment.yaml │ │ │ ├── redis-haproxy-pdb.yaml │ │ │ ├── redis-haproxy-role.yaml │ │ │ ├── redis-haproxy-rolebinding.yaml │ │ │ ├── redis-haproxy-service.yaml │ │ │ ├── redis-haproxy-serviceaccount.yaml │ │ │ ├── redis-haproxy-servicemonitor.yaml │ │ │ ├── redis-tls-secret.yaml │ │ │ ├── sentinel-auth-secret.yaml │ │ │ └── tests │ │ │ │ ├── test-redis-ha-configmap.yaml │ │ │ │ └── test-redis-ha-pod.yaml │ │ │ └── values.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _common.tpl │ │ ├── _helpers.tpl │ │ ├── _versions.tpl │ │ ├── aggregate-roles.yaml │ │ ├── argocd-application-controller │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── metrics.yaml │ │ │ ├── networkpolicy.yaml │ │ │ ├── pdb.yaml │ │ │ ├── prometheusrule.yaml │ │ │ ├── role.yaml │ │ │ ├── rolebinding.yaml │ │ │ ├── serviceaccount.yaml │ │ │ ├── servicemonitor.yaml │ │ │ └── statefulset.yaml │ │ ├── argocd-applicationset │ │ │ ├── certificate.yaml │ │ │ ├── deployment.yaml │ │ │ ├── metrics.yaml │ │ │ ├── networkpolicy.yaml │ │ │ ├── pdb.yaml │ │ │ ├── role.yaml │ │ │ ├── rolebinding.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ ├── servicemonitor.yaml │ │ │ └── webhook-ingress.yaml │ │ ├── argocd-configs │ │ │ ├── argocd-cm.yaml │ │ │ ├── argocd-cmd-params-cm.yaml │ │ │ ├── argocd-cmp-cm.yaml │ │ │ ├── argocd-dex-server-tls-secret.yaml │ │ │ ├── argocd-gpg-keys-cm.yaml │ │ │ ├── argocd-notifications-cm.yaml │ │ │ ├── argocd-notifications-secret.yaml │ │ │ ├── argocd-rbac-cm.yaml │ │ │ ├── argocd-repo-server-tls-secret.yaml │ │ │ ├── argocd-secret.yaml │ │ │ ├── argocd-server-tls-secret.yaml │ │ │ ├── argocd-ssh-known-hosts-cm.yaml │ │ │ ├── argocd-styles-cm.yaml │ │ │ ├── argocd-tls-certs-cm.yaml │ │ │ ├── cluster-secrets.yaml │ │ │ ├── externalredis-secret.yaml │ │ │ ├── repository-credentials-secret.yaml │ │ │ └── repository-secret.yaml │ │ ├── argocd-notifications │ │ │ ├── deployment.yaml │ │ │ ├── metrics.yaml │ │ │ ├── networkpolicy.yaml │ │ │ ├── pdb.yaml │ │ │ ├── role.yaml │ │ │ ├── rolebinding.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── servicemonitor.yaml │ │ ├── argocd-repo-server │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── deployment.yaml │ │ │ ├── hpa.yaml │ │ │ ├── metrics.yaml │ │ │ ├── networkpolicy.yaml │ │ │ ├── pdb.yaml │ │ │ ├── role.yaml │ │ │ ├── rolebinding.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── servicemonitor.yaml │ │ ├── argocd-server │ │ │ ├── aws │ │ │ │ └── service.yaml │ │ │ ├── certificate.yaml │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── deployment.yaml │ │ │ ├── gke │ │ │ │ ├── backendconfig.yaml │ │ │ │ ├── frontendconfig.yaml │ │ │ │ └── managedcertificate.yaml │ │ │ ├── hpa.yaml │ │ │ ├── ingress-grpc.yaml │ │ │ ├── ingress.yaml │ │ │ ├── metrics.yaml │ │ │ ├── networkpolicy.yaml │ │ │ ├── openshift │ │ │ │ └── route.yaml │ │ │ ├── pdb.yaml │ │ │ ├── role.yaml │ │ │ ├── rolebinding.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── servicemonitor.yaml │ │ ├── crds │ │ │ ├── crd-application.yaml │ │ │ ├── crd-applicationset.yaml │ │ │ ├── crd-extension.yaml │ │ │ └── crd-project.yaml │ │ ├── dex │ │ │ ├── deployment.yaml │ │ │ ├── networkpolicy.yaml │ │ │ ├── pdb.yaml │ │ │ ├── role.yaml │ │ │ ├── rolebinding.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── servicemonitor.yaml │ │ ├── extra-manifests.yaml │ │ ├── networkpolicy-default-deny.yaml │ │ └── redis │ │ │ ├── deployment.yaml │ │ │ ├── metrics.yaml │ │ │ ├── networkpolicy.yaml │ │ │ ├── pdb.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── servicemonitor.yaml │ └── values.yaml ├── Chart.lock ├── Chart.yaml ├── README.md ├── charts │ └── redis-ha │ │ ├── Chart.yaml │ │ ├── README.md │ │ ├── ci │ │ └── haproxy-enabled-values.yaml │ │ ├── templates │ │ ├── NOTES.txt │ │ ├── _configs.tpl │ │ ├── _helpers.tpl │ │ ├── redis-auth-secret.yaml │ │ ├── redis-ha-announce-service.yaml │ │ ├── redis-ha-configmap.yaml │ │ ├── redis-ha-exporter-script-configmap.yaml │ │ ├── redis-ha-health-configmap.yaml │ │ ├── redis-ha-network-policy.yaml │ │ ├── redis-ha-pdb.yaml │ │ ├── redis-ha-prometheus-rule.yaml │ │ ├── redis-ha-role.yaml │ │ ├── redis-ha-rolebinding.yaml │ │ ├── redis-ha-secret.yaml │ │ ├── redis-ha-service.yaml │ │ ├── redis-ha-serviceaccount.yaml │ │ ├── redis-ha-servicemonitor.yaml │ │ ├── redis-ha-statefulset.yaml │ │ ├── redis-haproxy-deployment.yaml │ │ ├── redis-haproxy-pdb.yaml │ │ ├── redis-haproxy-role.yaml │ │ ├── redis-haproxy-rolebinding.yaml │ │ ├── redis-haproxy-service.yaml │ │ ├── redis-haproxy-serviceaccount.yaml │ │ ├── redis-haproxy-servicemonitor.yaml │ │ ├── redis-tls-secret.yaml │ │ ├── sentinel-auth-secret.yaml │ │ └── tests │ │ │ ├── test-redis-ha-configmap.yaml │ │ │ └── test-redis-ha-pod.yaml │ │ └── values.yaml ├── templates │ ├── NOTES.txt │ ├── _common.tpl │ ├── _helpers.tpl │ ├── _versions.tpl │ ├── aggregate-roles.yaml │ ├── argocd-application-controller │ │ ├── clusterrole.yaml │ │ ├── clusterrolebinding.yaml │ │ ├── metrics.yaml │ │ ├── networkpolicy.yaml │ │ ├── pdb.yaml │ │ ├── prometheusrule.yaml │ │ ├── role.yaml │ │ ├── rolebinding.yaml │ │ ├── serviceaccount.yaml │ │ ├── servicemonitor.yaml │ │ └── statefulset.yaml │ ├── argocd-applicationset │ │ ├── deployment.yaml │ │ ├── metrics.yaml │ │ ├── networkpolicy.yaml │ │ ├── pdb.yaml │ │ ├── role.yaml │ │ ├── rolebinding.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ ├── servicemonitor.yaml │ │ └── webhook-ingress.yaml │ ├── argocd-configs │ │ ├── argocd-cm.yaml │ │ ├── argocd-cmd-params-cm.yaml │ │ ├── argocd-gpg-keys-cm.yaml │ │ ├── argocd-notifications-cm.yaml │ │ ├── argocd-notifications-secret.yaml │ │ ├── argocd-rbac-cm.yaml │ │ ├── argocd-secret.yaml │ │ ├── argocd-ssh-known-hosts-cm.yaml │ │ ├── argocd-styles-cm.yaml │ │ ├── argocd-tls-certs-cm.yaml │ │ ├── cluster-secrets.yaml │ │ ├── externalredis-secret.yaml │ │ ├── repository-credentials-secret.yaml │ │ └── repository-secret.yaml │ ├── argocd-notifications │ │ ├── bots │ │ │ └── slack │ │ │ │ ├── deployment.yaml │ │ │ │ ├── pdb.yaml │ │ │ │ ├── role.yaml │ │ │ │ ├── rolebinding.yaml │ │ │ │ ├── service.yaml │ │ │ │ └── serviceaccount.yaml │ │ ├── deployment.yaml │ │ ├── metrics.yaml │ │ ├── networkpolicy.yaml │ │ ├── pdb.yaml │ │ ├── role.yaml │ │ ├── rolebinding.yaml │ │ ├── serviceaccount.yaml │ │ └── servicemonitor.yaml │ ├── argocd-repo-server │ │ ├── clusterrole.yaml │ │ ├── clusterrolebinding.yaml │ │ ├── deployment.yaml │ │ ├── hpa.yaml │ │ ├── metrics.yaml │ │ ├── networkpolicy.yaml │ │ ├── pdb.yaml │ │ ├── role.yaml │ │ ├── rolebinding.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ └── servicemonitor.yaml │ ├── argocd-server │ │ ├── aws │ │ │ └── service.yaml │ │ ├── certificate.yaml │ │ ├── clusterrole.yaml │ │ ├── clusterrolebinding.yaml │ │ ├── deployment.yaml │ │ ├── gke │ │ │ ├── backendconfig.yaml │ │ │ ├── frontendconfig.yaml │ │ │ └── managedcertificate.yaml │ │ ├── hpa.yaml │ │ ├── ingress-grpc.yaml │ │ ├── ingress.yaml │ │ ├── metrics.yaml │ │ ├── networkpolicy.yaml │ │ ├── openshift │ │ │ └── route.yaml │ │ ├── pdb.yaml │ │ ├── role.yaml │ │ ├── rolebinding.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ └── servicemonitor.yaml │ ├── crds │ │ ├── crd-application.yaml │ │ ├── crd-applicationset.yaml │ │ ├── crd-extension.yaml │ │ └── crd-project.yaml │ ├── dex │ │ ├── deployment.yaml │ │ ├── networkpolicy.yaml │ │ ├── pdb.yaml │ │ ├── role.yaml │ │ ├── rolebinding.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ └── servicemonitor.yaml │ ├── extra-manifests.yaml │ ├── networkpolicy-default-deny.yaml │ └── redis │ │ ├── deployment.yaml │ │ ├── metrics.yaml │ │ ├── networkpolicy.yaml │ │ ├── pdb.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ └── servicemonitor.yaml └── values.yaml ├── argocd-apps ├── .gitignore ├── Chart.yaml ├── README.md ├── README.md.gotmpl ├── ci │ ├── applicationsets-values.yaml │ ├── default-values.yaml │ └── extensions-values.yaml ├── templates │ ├── applications.yaml │ ├── applicationsets.yaml │ ├── extensions.yaml │ ├── namespace.yaml │ └── projects.yaml ├── values-first.yaml ├── values-second.yaml └── values.yaml ├── argocd-image-updater ├── .helmignore ├── Chart.yaml ├── README.md ├── templates │ ├── _helpers.tpl │ ├── configmap-authscripts.yaml │ ├── configmap-sshconfig.yaml │ ├── configmap.yaml │ ├── deployment.yaml │ ├── metrics-service.yaml │ ├── rbac.yaml │ ├── secret.yaml │ ├── serviceaccount.yaml │ └── servicemonitor.yaml ├── values-custom.yaml └── values.yaml └── examples ├── README.md ├── apps ├── Chart.yaml ├── templates │ ├── helm-guestbook.yaml │ ├── helm-hooks.yaml │ ├── kustomize-guestbook.yaml │ ├── namespaces.yaml │ └── sync-waves.yaml └── values.yaml ├── blue-green ├── .helmignore ├── Chart.yaml ├── README.md ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── rollout.yaml │ └── services.yaml └── values.yaml ├── guestbook ├── guestbook-ui-deployment.yaml └── guestbook-ui-svc.yaml ├── helm-dependency ├── Chart.yaml ├── README.md ├── values-nomaria.yaml └── values.yaml ├── helm-guestbook ├── .helmignore ├── Chart.yaml ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── deployment.yaml │ └── service.yaml ├── values-dev.yaml ├── values-pro.yaml ├── values-production.yaml ├── values-test.yaml └── values.yaml ├── helm-hooks └── manifests.yaml ├── jsonnet-guestbook-tla └── guestbook-ui.jsonnet ├── jsonnet-guestbook ├── guestbook-ui.jsonnet └── params.libsonnet ├── ksonnet-guestbook ├── .gitignore ├── app.yaml ├── components │ ├── guestbook-ui.jsonnet │ └── params.libsonnet └── environments │ ├── base.libsonnet │ ├── default │ ├── globals.libsonnet │ ├── main.jsonnet │ └── params.libsonnet │ ├── dev │ ├── globals.libsonnet │ ├── main.jsonnet │ └── params.libsonnet │ └── prod │ ├── globals.libsonnet │ ├── main.jsonnet │ └── params.libsonnet ├── kustomize-guestbook ├── guestbook-ui-deployment.yaml ├── guestbook-ui-svc.yaml └── kustomization.yaml ├── plugins ├── README.md ├── kasane │ ├── .gitignore │ ├── Kasanefile │ ├── README.md │ └── patch.jsonnet └── kustomized-helm │ ├── .gitignore │ ├── Chart.yaml │ ├── README.md │ ├── kustomization.yaml │ └── overlays │ └── guestbook-deployment.yaml ├── pre-post-sync ├── kustomization.yaml ├── post-sync-job.yaml └── pre-sync-job.yaml ├── sock-shop ├── base │ ├── carts-db-dep.yaml │ ├── carts-db-svc.yaml │ ├── carts-dep.yaml │ ├── catalogue-db-dep.yaml │ ├── catalogue-db-svc.yaml │ ├── catalogue-dep.yaml │ ├── catalogue-svc.yaml │ ├── front-end-dep.yaml │ ├── front-end-svc.yaml │ ├── orders-db-dep.yaml │ ├── orders-db-svc.yaml │ ├── orders-dep.yaml │ ├── orders-svc.yaml │ ├── payment-dep.yaml │ ├── payment-svc.yaml │ ├── queue-master-dep.yaml │ ├── queue-master-svc.yaml │ ├── rabbitmq-dep.yaml │ ├── rabbitmq-svc.yaml │ ├── session-db-dep.yaml │ ├── session-db-svc.yaml │ ├── shipping-dep.yaml │ ├── shipping-svc.yaml │ ├── user-db-dep.yaml │ ├── user-db-svc.yaml │ ├── user-dep.yaml │ └── user-svc.yaml └── kustomization.yaml └── sync-waves └── manifests.yaml /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | test -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # argocd 2 | ArgoCD video repository 3 | -------------------------------------------------------------------------------- /Video_01/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_01/README.md -------------------------------------------------------------------------------- /Video_02/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/README.md -------------------------------------------------------------------------------- /Video_02/argo-cd-5.8.2.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd-5.8.2.tgz -------------------------------------------------------------------------------- /Video_02/argo-cd/.helmignore: -------------------------------------------------------------------------------- 1 | /*.tgz 2 | output 3 | ci/ 4 | *.gotmpl 5 | -------------------------------------------------------------------------------- /Video_02/argo-cd/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/Chart.lock -------------------------------------------------------------------------------- /Video_02/argo-cd/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/Chart.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/README.md -------------------------------------------------------------------------------- /Video_02/argo-cd/charts/redis-ha/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/charts/redis-ha/Chart.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/charts/redis-ha/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/charts/redis-ha/README.md -------------------------------------------------------------------------------- /Video_02/argo-cd/charts/redis-ha/ci/haproxy-enabled-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/charts/redis-ha/ci/haproxy-enabled-values.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/charts/redis-ha/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/charts/redis-ha/templates/NOTES.txt -------------------------------------------------------------------------------- /Video_02/argo-cd/charts/redis-ha/templates/_configs.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/charts/redis-ha/templates/_configs.tpl -------------------------------------------------------------------------------- /Video_02/argo-cd/charts/redis-ha/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/charts/redis-ha/templates/_helpers.tpl -------------------------------------------------------------------------------- /Video_02/argo-cd/charts/redis-ha/templates/redis-auth-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/charts/redis-ha/templates/redis-auth-secret.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/charts/redis-ha/templates/redis-ha-announce-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/charts/redis-ha/templates/redis-ha-announce-service.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/charts/redis-ha/templates/redis-ha-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/charts/redis-ha/templates/redis-ha-configmap.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/charts/redis-ha/templates/redis-ha-health-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/charts/redis-ha/templates/redis-ha-health-configmap.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/charts/redis-ha/templates/redis-ha-network-policy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/charts/redis-ha/templates/redis-ha-network-policy.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/charts/redis-ha/templates/redis-ha-pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/charts/redis-ha/templates/redis-ha-pdb.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/charts/redis-ha/templates/redis-ha-prometheus-rule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/charts/redis-ha/templates/redis-ha-prometheus-rule.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/charts/redis-ha/templates/redis-ha-role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/charts/redis-ha/templates/redis-ha-role.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/charts/redis-ha/templates/redis-ha-rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/charts/redis-ha/templates/redis-ha-rolebinding.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/charts/redis-ha/templates/redis-ha-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/charts/redis-ha/templates/redis-ha-secret.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/charts/redis-ha/templates/redis-ha-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/charts/redis-ha/templates/redis-ha-service.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/charts/redis-ha/templates/redis-ha-serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/charts/redis-ha/templates/redis-ha-serviceaccount.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/charts/redis-ha/templates/redis-ha-servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/charts/redis-ha/templates/redis-ha-servicemonitor.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/charts/redis-ha/templates/redis-ha-statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/charts/redis-ha/templates/redis-ha-statefulset.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/charts/redis-ha/templates/redis-haproxy-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/charts/redis-ha/templates/redis-haproxy-deployment.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/charts/redis-ha/templates/redis-haproxy-pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/charts/redis-ha/templates/redis-haproxy-pdb.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/charts/redis-ha/templates/redis-haproxy-role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/charts/redis-ha/templates/redis-haproxy-role.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/charts/redis-ha/templates/redis-haproxy-rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/charts/redis-ha/templates/redis-haproxy-rolebinding.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/charts/redis-ha/templates/redis-haproxy-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/charts/redis-ha/templates/redis-haproxy-service.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/charts/redis-ha/templates/redis-haproxy-serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/charts/redis-ha/templates/redis-haproxy-serviceaccount.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/charts/redis-ha/templates/redis-haproxy-servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/charts/redis-ha/templates/redis-haproxy-servicemonitor.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/charts/redis-ha/templates/redis-tls-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/charts/redis-ha/templates/redis-tls-secret.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/charts/redis-ha/templates/sentinel-auth-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/charts/redis-ha/templates/sentinel-auth-secret.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/charts/redis-ha/templates/tests/test-redis-ha-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/charts/redis-ha/templates/tests/test-redis-ha-configmap.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/charts/redis-ha/templates/tests/test-redis-ha-pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/charts/redis-ha/templates/tests/test-redis-ha-pod.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/charts/redis-ha/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/charts/redis-ha/values.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/templates/NOTES.txt -------------------------------------------------------------------------------- /Video_02/argo-cd/templates/_common.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/templates/_common.tpl -------------------------------------------------------------------------------- /Video_02/argo-cd/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/templates/_helpers.tpl -------------------------------------------------------------------------------- /Video_02/argo-cd/templates/_versions.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/templates/_versions.tpl -------------------------------------------------------------------------------- /Video_02/argo-cd/templates/aggregate-roles.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/templates/aggregate-roles.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/templates/argocd-application-controller/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/templates/argocd-application-controller/clusterrole.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/templates/argocd-application-controller/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/templates/argocd-application-controller/clusterrolebinding.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/templates/argocd-application-controller/metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/templates/argocd-application-controller/metrics.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/templates/argocd-application-controller/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/templates/argocd-application-controller/networkpolicy.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/templates/argocd-application-controller/pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/templates/argocd-application-controller/pdb.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/templates/argocd-application-controller/prometheusrule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/templates/argocd-application-controller/prometheusrule.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/templates/argocd-application-controller/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/templates/argocd-application-controller/role.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/templates/argocd-application-controller/rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/templates/argocd-application-controller/rolebinding.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/templates/argocd-application-controller/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/templates/argocd-application-controller/serviceaccount.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/templates/argocd-application-controller/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/templates/argocd-application-controller/servicemonitor.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/templates/argocd-application-controller/statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/templates/argocd-application-controller/statefulset.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/templates/argocd-applicationset/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/templates/argocd-applicationset/deployment.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/templates/argocd-applicationset/metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/templates/argocd-applicationset/metrics.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/templates/argocd-applicationset/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/templates/argocd-applicationset/networkpolicy.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/templates/argocd-applicationset/pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/templates/argocd-applicationset/pdb.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/templates/argocd-applicationset/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/templates/argocd-applicationset/role.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/templates/argocd-applicationset/rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/templates/argocd-applicationset/rolebinding.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/templates/argocd-applicationset/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/templates/argocd-applicationset/service.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/templates/argocd-applicationset/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/templates/argocd-applicationset/serviceaccount.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/templates/argocd-applicationset/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/templates/argocd-applicationset/servicemonitor.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/templates/argocd-applicationset/webhook-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/templates/argocd-applicationset/webhook-ingress.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/templates/argocd-configs/argocd-cm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/templates/argocd-configs/argocd-cm.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/templates/argocd-configs/argocd-cmd-params-cm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/templates/argocd-configs/argocd-cmd-params-cm.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/templates/argocd-configs/argocd-gpg-keys-cm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/templates/argocd-configs/argocd-gpg-keys-cm.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/templates/argocd-configs/argocd-notifications-cm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/templates/argocd-configs/argocd-notifications-cm.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/templates/argocd-configs/argocd-notifications-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/templates/argocd-configs/argocd-notifications-secret.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/templates/argocd-configs/argocd-rbac-cm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/templates/argocd-configs/argocd-rbac-cm.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/templates/argocd-configs/argocd-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/templates/argocd-configs/argocd-secret.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/templates/argocd-configs/argocd-ssh-known-hosts-cm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/templates/argocd-configs/argocd-ssh-known-hosts-cm.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/templates/argocd-configs/argocd-styles-cm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/templates/argocd-configs/argocd-styles-cm.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/templates/argocd-configs/argocd-tls-certs-cm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/templates/argocd-configs/argocd-tls-certs-cm.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/templates/argocd-configs/cluster-secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/templates/argocd-configs/cluster-secrets.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/templates/argocd-configs/externalredis-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/templates/argocd-configs/externalredis-secret.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/templates/argocd-configs/repository-credentials-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/templates/argocd-configs/repository-credentials-secret.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/templates/argocd-configs/repository-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/templates/argocd-configs/repository-secret.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/templates/argocd-notifications/bots/slack/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/templates/argocd-notifications/bots/slack/deployment.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/templates/argocd-notifications/bots/slack/pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/templates/argocd-notifications/bots/slack/pdb.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/templates/argocd-notifications/bots/slack/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/templates/argocd-notifications/bots/slack/role.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/templates/argocd-notifications/bots/slack/rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/templates/argocd-notifications/bots/slack/rolebinding.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/templates/argocd-notifications/bots/slack/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/templates/argocd-notifications/bots/slack/service.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/templates/argocd-notifications/bots/slack/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/templates/argocd-notifications/bots/slack/serviceaccount.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/templates/argocd-notifications/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/templates/argocd-notifications/deployment.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/templates/argocd-notifications/metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/templates/argocd-notifications/metrics.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/templates/argocd-notifications/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/templates/argocd-notifications/networkpolicy.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/templates/argocd-notifications/pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/templates/argocd-notifications/pdb.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/templates/argocd-notifications/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/templates/argocd-notifications/role.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/templates/argocd-notifications/rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/templates/argocd-notifications/rolebinding.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/templates/argocd-notifications/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/templates/argocd-notifications/serviceaccount.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/templates/argocd-notifications/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/templates/argocd-notifications/servicemonitor.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/templates/argocd-repo-server/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/templates/argocd-repo-server/clusterrole.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/templates/argocd-repo-server/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/templates/argocd-repo-server/clusterrolebinding.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/templates/argocd-repo-server/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/templates/argocd-repo-server/deployment.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/templates/argocd-repo-server/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/templates/argocd-repo-server/hpa.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/templates/argocd-repo-server/metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/templates/argocd-repo-server/metrics.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/templates/argocd-repo-server/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/templates/argocd-repo-server/networkpolicy.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/templates/argocd-repo-server/pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/templates/argocd-repo-server/pdb.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/templates/argocd-repo-server/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/templates/argocd-repo-server/role.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/templates/argocd-repo-server/rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/templates/argocd-repo-server/rolebinding.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/templates/argocd-repo-server/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/templates/argocd-repo-server/service.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/templates/argocd-repo-server/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/templates/argocd-repo-server/serviceaccount.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/templates/argocd-repo-server/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/templates/argocd-repo-server/servicemonitor.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/templates/argocd-server/aws/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/templates/argocd-server/aws/service.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/templates/argocd-server/certificate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/templates/argocd-server/certificate.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/templates/argocd-server/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/templates/argocd-server/clusterrole.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/templates/argocd-server/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/templates/argocd-server/clusterrolebinding.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/templates/argocd-server/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/templates/argocd-server/deployment.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/templates/argocd-server/gke/backendconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/templates/argocd-server/gke/backendconfig.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/templates/argocd-server/gke/frontendconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/templates/argocd-server/gke/frontendconfig.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/templates/argocd-server/gke/managedcertificate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/templates/argocd-server/gke/managedcertificate.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/templates/argocd-server/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/templates/argocd-server/hpa.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/templates/argocd-server/ingress-grpc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/templates/argocd-server/ingress-grpc.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/templates/argocd-server/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/templates/argocd-server/ingress.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/templates/argocd-server/metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/templates/argocd-server/metrics.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/templates/argocd-server/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/templates/argocd-server/networkpolicy.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/templates/argocd-server/openshift/route.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/templates/argocd-server/openshift/route.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/templates/argocd-server/pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/templates/argocd-server/pdb.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/templates/argocd-server/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/templates/argocd-server/role.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/templates/argocd-server/rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/templates/argocd-server/rolebinding.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/templates/argocd-server/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/templates/argocd-server/service.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/templates/argocd-server/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/templates/argocd-server/serviceaccount.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/templates/argocd-server/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/templates/argocd-server/servicemonitor.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/templates/crds/crd-application.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/templates/crds/crd-application.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/templates/crds/crd-applicationset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/templates/crds/crd-applicationset.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/templates/crds/crd-extension.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/templates/crds/crd-extension.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/templates/crds/crd-project.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/templates/crds/crd-project.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/templates/dex/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/templates/dex/deployment.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/templates/dex/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/templates/dex/networkpolicy.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/templates/dex/pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/templates/dex/pdb.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/templates/dex/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/templates/dex/role.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/templates/dex/rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/templates/dex/rolebinding.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/templates/dex/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/templates/dex/service.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/templates/dex/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/templates/dex/serviceaccount.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/templates/dex/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/templates/dex/servicemonitor.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/templates/extra-manifests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/templates/extra-manifests.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/templates/networkpolicy-default-deny.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/templates/networkpolicy-default-deny.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/templates/redis/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/templates/redis/deployment.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/templates/redis/metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/templates/redis/metrics.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/templates/redis/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/templates/redis/networkpolicy.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/templates/redis/pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/templates/redis/pdb.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/templates/redis/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/templates/redis/service.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/templates/redis/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/templates/redis/serviceaccount.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/templates/redis/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/templates/redis/servicemonitor.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/values-custom.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/values-custom.yaml -------------------------------------------------------------------------------- /Video_02/argo-cd/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argo-cd/values.yaml -------------------------------------------------------------------------------- /Video_02/argocd-manifests/application.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argocd-manifests/application.yaml -------------------------------------------------------------------------------- /Video_02/argocd-manifests/project.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argocd-manifests/project.yaml -------------------------------------------------------------------------------- /Video_02/argocd-manifests/repository.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/argocd-manifests/repository.yaml -------------------------------------------------------------------------------- /Video_02/images/Captura de pantalla 2023-01-14 a las 12.08.59.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_02/images/Captura de pantalla 2023-01-14 a las 12.08.59.png -------------------------------------------------------------------------------- /Video_03/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_03/Makefile -------------------------------------------------------------------------------- /Video_03/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_03/README.md -------------------------------------------------------------------------------- /Video_03/argocd-manifests/image-updater.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_03/argocd-manifests/image-updater.yaml -------------------------------------------------------------------------------- /Video_03/argocd-manifests/nginx-demo-arm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_03/argocd-manifests/nginx-demo-arm.yaml -------------------------------------------------------------------------------- /Video_03/argocd-manifests/project-argocd-demo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_03/argocd-manifests/project-argocd-demo.yaml -------------------------------------------------------------------------------- /Video_03/docker/nginx/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_03/docker/nginx/Dockerfile -------------------------------------------------------------------------------- /Video_03/docker/nginx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_03/docker/nginx/README.md -------------------------------------------------------------------------------- /Video_03/k8s/git-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_03/k8s/git-secret.yaml -------------------------------------------------------------------------------- /Video_03/nginx-demo/arm/kustomize/base/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_03/nginx-demo/arm/kustomize/base/deployment.yaml -------------------------------------------------------------------------------- /Video_03/nginx-demo/arm/kustomize/base/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_03/nginx-demo/arm/kustomize/base/kustomization.yaml -------------------------------------------------------------------------------- /Video_03/nginx-demo/arm/kustomize/base/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_03/nginx-demo/arm/kustomize/base/service.yaml -------------------------------------------------------------------------------- /Video_03/nginx-demo/arm/kustomize/overlays/testing/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_03/nginx-demo/arm/kustomize/overlays/testing/kustomization.yaml -------------------------------------------------------------------------------- /Video_04/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_04/Makefile -------------------------------------------------------------------------------- /Video_04/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_04/README.md -------------------------------------------------------------------------------- /Video_04/argocd-manifests/applicationset1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_04/argocd-manifests/applicationset1.yaml -------------------------------------------------------------------------------- /Video_04/argocd-manifests/applicationset2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_04/argocd-manifests/applicationset2.yaml -------------------------------------------------------------------------------- /Video_04/argocd-manifests/project-appset1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_04/argocd-manifests/project-appset1.yaml -------------------------------------------------------------------------------- /Video_04/argocd-manifests/project-appset2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_04/argocd-manifests/project-appset2.yaml -------------------------------------------------------------------------------- /Video_04/argocd-manifests/project-argocd-demo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_04/argocd-manifests/project-argocd-demo.yaml -------------------------------------------------------------------------------- /Video_04/argocd-manifests/repository.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_04/argocd-manifests/repository.yaml -------------------------------------------------------------------------------- /Video_04/k8s/git-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_04/k8s/git-secret.yaml -------------------------------------------------------------------------------- /Video_04/k8s/namespaces1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_04/k8s/namespaces1.yaml -------------------------------------------------------------------------------- /Video_04/k8s/namespaces2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_04/k8s/namespaces2.yaml -------------------------------------------------------------------------------- /Video_05/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_05/Makefile -------------------------------------------------------------------------------- /Video_05/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_05/README.md -------------------------------------------------------------------------------- /Video_05/argocd-manifests/application.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_05/argocd-manifests/application.yaml -------------------------------------------------------------------------------- /Video_05/argocd-manifests/project-argocd-demo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_05/argocd-manifests/project-argocd-demo.yaml -------------------------------------------------------------------------------- /Video_05/values-custom.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/Video_05/values-custom.yaml -------------------------------------------------------------------------------- /official/argo-cd/.helmignore: -------------------------------------------------------------------------------- 1 | /*.tgz 2 | output 3 | ci/ 4 | *.gotmpl 5 | -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/.helmignore: -------------------------------------------------------------------------------- 1 | /*.tgz 2 | output 3 | ci/ 4 | *.gotmpl 5 | -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/Chart.lock -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/Chart.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/README.md -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/charts/redis-ha/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/charts/redis-ha/Chart.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/charts/redis-ha/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/charts/redis-ha/README.md -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/charts/redis-ha/ci/haproxy-enabled-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/charts/redis-ha/ci/haproxy-enabled-values.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/charts/redis-ha/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/charts/redis-ha/templates/NOTES.txt -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/charts/redis-ha/templates/_configs.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/charts/redis-ha/templates/_configs.tpl -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/charts/redis-ha/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/charts/redis-ha/templates/_helpers.tpl -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/charts/redis-ha/templates/redis-auth-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/charts/redis-ha/templates/redis-auth-secret.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/charts/redis-ha/templates/redis-ha-announce-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/charts/redis-ha/templates/redis-ha-announce-service.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/charts/redis-ha/templates/redis-ha-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/charts/redis-ha/templates/redis-ha-configmap.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/charts/redis-ha/templates/redis-ha-health-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/charts/redis-ha/templates/redis-ha-health-configmap.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/charts/redis-ha/templates/redis-ha-network-policy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/charts/redis-ha/templates/redis-ha-network-policy.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/charts/redis-ha/templates/redis-ha-pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/charts/redis-ha/templates/redis-ha-pdb.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/charts/redis-ha/templates/redis-ha-prometheus-rule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/charts/redis-ha/templates/redis-ha-prometheus-rule.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/charts/redis-ha/templates/redis-ha-role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/charts/redis-ha/templates/redis-ha-role.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/charts/redis-ha/templates/redis-ha-rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/charts/redis-ha/templates/redis-ha-rolebinding.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/charts/redis-ha/templates/redis-ha-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/charts/redis-ha/templates/redis-ha-secret.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/charts/redis-ha/templates/redis-ha-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/charts/redis-ha/templates/redis-ha-service.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/charts/redis-ha/templates/redis-ha-serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/charts/redis-ha/templates/redis-ha-serviceaccount.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/charts/redis-ha/templates/redis-ha-servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/charts/redis-ha/templates/redis-ha-servicemonitor.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/charts/redis-ha/templates/redis-ha-statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/charts/redis-ha/templates/redis-ha-statefulset.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/charts/redis-ha/templates/redis-haproxy-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/charts/redis-ha/templates/redis-haproxy-deployment.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/charts/redis-ha/templates/redis-haproxy-pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/charts/redis-ha/templates/redis-haproxy-pdb.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/charts/redis-ha/templates/redis-haproxy-role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/charts/redis-ha/templates/redis-haproxy-role.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/charts/redis-ha/templates/redis-haproxy-rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/charts/redis-ha/templates/redis-haproxy-rolebinding.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/charts/redis-ha/templates/redis-haproxy-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/charts/redis-ha/templates/redis-haproxy-service.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/charts/redis-ha/templates/redis-tls-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/charts/redis-ha/templates/redis-tls-secret.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/charts/redis-ha/templates/sentinel-auth-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/charts/redis-ha/templates/sentinel-auth-secret.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/charts/redis-ha/templates/tests/test-redis-ha-pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/charts/redis-ha/templates/tests/test-redis-ha-pod.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/charts/redis-ha/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/charts/redis-ha/values.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/templates/NOTES.txt -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/templates/_common.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/templates/_common.tpl -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/templates/_helpers.tpl -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/templates/_versions.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/templates/_versions.tpl -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/templates/aggregate-roles.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/templates/aggregate-roles.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/templates/argocd-application-controller/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/templates/argocd-application-controller/clusterrole.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/templates/argocd-application-controller/metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/templates/argocd-application-controller/metrics.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/templates/argocd-application-controller/pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/templates/argocd-application-controller/pdb.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/templates/argocd-application-controller/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/templates/argocd-application-controller/role.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/templates/argocd-application-controller/rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/templates/argocd-application-controller/rolebinding.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/templates/argocd-application-controller/statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/templates/argocd-application-controller/statefulset.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/templates/argocd-applicationset/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/templates/argocd-applicationset/deployment.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/templates/argocd-applicationset/metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/templates/argocd-applicationset/metrics.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/templates/argocd-applicationset/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/templates/argocd-applicationset/networkpolicy.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/templates/argocd-applicationset/pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/templates/argocd-applicationset/pdb.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/templates/argocd-applicationset/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/templates/argocd-applicationset/role.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/templates/argocd-applicationset/rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/templates/argocd-applicationset/rolebinding.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/templates/argocd-applicationset/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/templates/argocd-applicationset/service.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/templates/argocd-applicationset/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/templates/argocd-applicationset/serviceaccount.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/templates/argocd-applicationset/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/templates/argocd-applicationset/servicemonitor.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/templates/argocd-applicationset/webhook-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/templates/argocd-applicationset/webhook-ingress.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/templates/argocd-configs/argocd-cm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/templates/argocd-configs/argocd-cm.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/templates/argocd-configs/argocd-cmd-params-cm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/templates/argocd-configs/argocd-cmd-params-cm.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/templates/argocd-configs/argocd-cmp-cm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/templates/argocd-configs/argocd-cmp-cm.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/templates/argocd-configs/argocd-gpg-keys-cm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/templates/argocd-configs/argocd-gpg-keys-cm.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/templates/argocd-configs/argocd-notifications-cm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/templates/argocd-configs/argocd-notifications-cm.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/templates/argocd-configs/argocd-notifications-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/templates/argocd-configs/argocd-notifications-secret.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/templates/argocd-configs/argocd-rbac-cm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/templates/argocd-configs/argocd-rbac-cm.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/templates/argocd-configs/argocd-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/templates/argocd-configs/argocd-secret.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/templates/argocd-configs/argocd-server-tls-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/templates/argocd-configs/argocd-server-tls-secret.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/templates/argocd-configs/argocd-ssh-known-hosts-cm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/templates/argocd-configs/argocd-ssh-known-hosts-cm.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/templates/argocd-configs/argocd-styles-cm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/templates/argocd-configs/argocd-styles-cm.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/templates/argocd-configs/argocd-tls-certs-cm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/templates/argocd-configs/argocd-tls-certs-cm.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/templates/argocd-configs/cluster-secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/templates/argocd-configs/cluster-secrets.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/templates/argocd-configs/externalredis-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/templates/argocd-configs/externalredis-secret.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/templates/argocd-configs/repository-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/templates/argocd-configs/repository-secret.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/templates/argocd-notifications/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/templates/argocd-notifications/deployment.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/templates/argocd-notifications/metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/templates/argocd-notifications/metrics.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/templates/argocd-notifications/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/templates/argocd-notifications/networkpolicy.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/templates/argocd-notifications/pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/templates/argocd-notifications/pdb.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/templates/argocd-notifications/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/templates/argocd-notifications/role.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/templates/argocd-notifications/rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/templates/argocd-notifications/rolebinding.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/templates/argocd-notifications/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/templates/argocd-notifications/serviceaccount.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/templates/argocd-notifications/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/templates/argocd-notifications/servicemonitor.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/templates/argocd-repo-server/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/templates/argocd-repo-server/clusterrole.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/templates/argocd-repo-server/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/templates/argocd-repo-server/clusterrolebinding.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/templates/argocd-repo-server/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/templates/argocd-repo-server/deployment.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/templates/argocd-repo-server/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/templates/argocd-repo-server/hpa.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/templates/argocd-repo-server/metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/templates/argocd-repo-server/metrics.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/templates/argocd-repo-server/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/templates/argocd-repo-server/networkpolicy.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/templates/argocd-repo-server/pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/templates/argocd-repo-server/pdb.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/templates/argocd-repo-server/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/templates/argocd-repo-server/role.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/templates/argocd-repo-server/rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/templates/argocd-repo-server/rolebinding.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/templates/argocd-repo-server/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/templates/argocd-repo-server/service.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/templates/argocd-repo-server/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/templates/argocd-repo-server/serviceaccount.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/templates/argocd-repo-server/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/templates/argocd-repo-server/servicemonitor.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/templates/argocd-server/aws/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/templates/argocd-server/aws/service.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/templates/argocd-server/certificate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/templates/argocd-server/certificate.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/templates/argocd-server/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/templates/argocd-server/clusterrole.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/templates/argocd-server/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/templates/argocd-server/clusterrolebinding.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/templates/argocd-server/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/templates/argocd-server/deployment.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/templates/argocd-server/gke/backendconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/templates/argocd-server/gke/backendconfig.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/templates/argocd-server/gke/frontendconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/templates/argocd-server/gke/frontendconfig.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/templates/argocd-server/gke/managedcertificate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/templates/argocd-server/gke/managedcertificate.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/templates/argocd-server/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/templates/argocd-server/hpa.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/templates/argocd-server/ingress-grpc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/templates/argocd-server/ingress-grpc.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/templates/argocd-server/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/templates/argocd-server/ingress.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/templates/argocd-server/metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/templates/argocd-server/metrics.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/templates/argocd-server/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/templates/argocd-server/networkpolicy.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/templates/argocd-server/openshift/route.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/templates/argocd-server/openshift/route.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/templates/argocd-server/pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/templates/argocd-server/pdb.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/templates/argocd-server/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/templates/argocd-server/role.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/templates/argocd-server/rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/templates/argocd-server/rolebinding.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/templates/argocd-server/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/templates/argocd-server/service.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/templates/argocd-server/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/templates/argocd-server/serviceaccount.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/templates/argocd-server/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/templates/argocd-server/servicemonitor.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/templates/crds/crd-application.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/templates/crds/crd-application.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/templates/crds/crd-applicationset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/templates/crds/crd-applicationset.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/templates/crds/crd-extension.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/templates/crds/crd-extension.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/templates/crds/crd-project.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/templates/crds/crd-project.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/templates/dex/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/templates/dex/deployment.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/templates/dex/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/templates/dex/networkpolicy.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/templates/dex/pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/templates/dex/pdb.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/templates/dex/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/templates/dex/role.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/templates/dex/rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/templates/dex/rolebinding.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/templates/dex/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/templates/dex/service.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/templates/dex/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/templates/dex/serviceaccount.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/templates/dex/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/templates/dex/servicemonitor.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/templates/extra-manifests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/templates/extra-manifests.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/templates/networkpolicy-default-deny.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/templates/networkpolicy-default-deny.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/templates/redis/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/templates/redis/deployment.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/templates/redis/metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/templates/redis/metrics.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/templates/redis/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/templates/redis/networkpolicy.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/templates/redis/pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/templates/redis/pdb.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/templates/redis/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/templates/redis/service.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/templates/redis/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/templates/redis/serviceaccount.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/templates/redis/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/templates/redis/servicemonitor.yaml -------------------------------------------------------------------------------- /official/argo-cd/4.22.5/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/4.22.5/values.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/.helmignore: -------------------------------------------------------------------------------- 1 | /*.tgz 2 | output 3 | ci/ 4 | *.gotmpl 5 | -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/Chart.lock -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/Chart.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/README.md -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/charts/redis-ha/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/charts/redis-ha/Chart.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/charts/redis-ha/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/charts/redis-ha/README.md -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/charts/redis-ha/ci/haproxy-enabled-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/charts/redis-ha/ci/haproxy-enabled-values.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/charts/redis-ha/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/charts/redis-ha/templates/NOTES.txt -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/charts/redis-ha/templates/_configs.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/charts/redis-ha/templates/_configs.tpl -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/charts/redis-ha/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/charts/redis-ha/templates/_helpers.tpl -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/charts/redis-ha/templates/redis-auth-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/charts/redis-ha/templates/redis-auth-secret.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/charts/redis-ha/templates/redis-ha-announce-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/charts/redis-ha/templates/redis-ha-announce-service.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/charts/redis-ha/templates/redis-ha-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/charts/redis-ha/templates/redis-ha-configmap.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/charts/redis-ha/templates/redis-ha-health-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/charts/redis-ha/templates/redis-ha-health-configmap.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/charts/redis-ha/templates/redis-ha-network-policy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/charts/redis-ha/templates/redis-ha-network-policy.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/charts/redis-ha/templates/redis-ha-pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/charts/redis-ha/templates/redis-ha-pdb.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/charts/redis-ha/templates/redis-ha-prometheus-rule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/charts/redis-ha/templates/redis-ha-prometheus-rule.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/charts/redis-ha/templates/redis-ha-role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/charts/redis-ha/templates/redis-ha-role.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/charts/redis-ha/templates/redis-ha-rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/charts/redis-ha/templates/redis-ha-rolebinding.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/charts/redis-ha/templates/redis-ha-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/charts/redis-ha/templates/redis-ha-secret.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/charts/redis-ha/templates/redis-ha-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/charts/redis-ha/templates/redis-ha-service.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/charts/redis-ha/templates/redis-ha-serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/charts/redis-ha/templates/redis-ha-serviceaccount.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/charts/redis-ha/templates/redis-ha-servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/charts/redis-ha/templates/redis-ha-servicemonitor.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/charts/redis-ha/templates/redis-ha-statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/charts/redis-ha/templates/redis-ha-statefulset.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/charts/redis-ha/templates/redis-haproxy-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/charts/redis-ha/templates/redis-haproxy-deployment.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/charts/redis-ha/templates/redis-haproxy-pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/charts/redis-ha/templates/redis-haproxy-pdb.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/charts/redis-ha/templates/redis-haproxy-role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/charts/redis-ha/templates/redis-haproxy-role.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/charts/redis-ha/templates/redis-haproxy-rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/charts/redis-ha/templates/redis-haproxy-rolebinding.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/charts/redis-ha/templates/redis-haproxy-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/charts/redis-ha/templates/redis-haproxy-service.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/charts/redis-ha/templates/redis-tls-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/charts/redis-ha/templates/redis-tls-secret.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/charts/redis-ha/templates/sentinel-auth-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/charts/redis-ha/templates/sentinel-auth-secret.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/charts/redis-ha/templates/tests/test-redis-ha-pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/charts/redis-ha/templates/tests/test-redis-ha-pod.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/charts/redis-ha/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/charts/redis-ha/values.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/templates/NOTES.txt -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/templates/_common.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/templates/_common.tpl -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/templates/_helpers.tpl -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/templates/_versions.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/templates/_versions.tpl -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/templates/aggregate-roles.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/templates/aggregate-roles.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/templates/argocd-application-controller/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/templates/argocd-application-controller/clusterrole.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/templates/argocd-application-controller/metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/templates/argocd-application-controller/metrics.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/templates/argocd-application-controller/pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/templates/argocd-application-controller/pdb.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/templates/argocd-application-controller/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/templates/argocd-application-controller/role.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/templates/argocd-application-controller/rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/templates/argocd-application-controller/rolebinding.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/templates/argocd-application-controller/statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/templates/argocd-application-controller/statefulset.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/templates/argocd-applicationset/certificate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/templates/argocd-applicationset/certificate.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/templates/argocd-applicationset/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/templates/argocd-applicationset/deployment.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/templates/argocd-applicationset/metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/templates/argocd-applicationset/metrics.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/templates/argocd-applicationset/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/templates/argocd-applicationset/networkpolicy.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/templates/argocd-applicationset/pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/templates/argocd-applicationset/pdb.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/templates/argocd-applicationset/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/templates/argocd-applicationset/role.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/templates/argocd-applicationset/rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/templates/argocd-applicationset/rolebinding.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/templates/argocd-applicationset/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/templates/argocd-applicationset/service.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/templates/argocd-applicationset/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/templates/argocd-applicationset/serviceaccount.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/templates/argocd-applicationset/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/templates/argocd-applicationset/servicemonitor.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/templates/argocd-applicationset/webhook-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/templates/argocd-applicationset/webhook-ingress.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/templates/argocd-configs/argocd-cm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/templates/argocd-configs/argocd-cm.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/templates/argocd-configs/argocd-cmd-params-cm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/templates/argocd-configs/argocd-cmd-params-cm.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/templates/argocd-configs/argocd-cmp-cm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/templates/argocd-configs/argocd-cmp-cm.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/templates/argocd-configs/argocd-gpg-keys-cm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/templates/argocd-configs/argocd-gpg-keys-cm.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/templates/argocd-configs/argocd-notifications-cm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/templates/argocd-configs/argocd-notifications-cm.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/templates/argocd-configs/argocd-rbac-cm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/templates/argocd-configs/argocd-rbac-cm.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/templates/argocd-configs/argocd-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/templates/argocd-configs/argocd-secret.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/templates/argocd-configs/argocd-server-tls-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/templates/argocd-configs/argocd-server-tls-secret.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/templates/argocd-configs/argocd-styles-cm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/templates/argocd-configs/argocd-styles-cm.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/templates/argocd-configs/argocd-tls-certs-cm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/templates/argocd-configs/argocd-tls-certs-cm.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/templates/argocd-configs/cluster-secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/templates/argocd-configs/cluster-secrets.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/templates/argocd-configs/externalredis-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/templates/argocd-configs/externalredis-secret.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/templates/argocd-configs/repository-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/templates/argocd-configs/repository-secret.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/templates/argocd-notifications/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/templates/argocd-notifications/deployment.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/templates/argocd-notifications/metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/templates/argocd-notifications/metrics.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/templates/argocd-notifications/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/templates/argocd-notifications/networkpolicy.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/templates/argocd-notifications/pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/templates/argocd-notifications/pdb.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/templates/argocd-notifications/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/templates/argocd-notifications/role.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/templates/argocd-notifications/rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/templates/argocd-notifications/rolebinding.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/templates/argocd-notifications/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/templates/argocd-notifications/serviceaccount.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/templates/argocd-notifications/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/templates/argocd-notifications/servicemonitor.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/templates/argocd-repo-server/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/templates/argocd-repo-server/clusterrole.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/templates/argocd-repo-server/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/templates/argocd-repo-server/clusterrolebinding.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/templates/argocd-repo-server/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/templates/argocd-repo-server/deployment.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/templates/argocd-repo-server/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/templates/argocd-repo-server/hpa.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/templates/argocd-repo-server/metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/templates/argocd-repo-server/metrics.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/templates/argocd-repo-server/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/templates/argocd-repo-server/networkpolicy.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/templates/argocd-repo-server/pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/templates/argocd-repo-server/pdb.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/templates/argocd-repo-server/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/templates/argocd-repo-server/role.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/templates/argocd-repo-server/rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/templates/argocd-repo-server/rolebinding.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/templates/argocd-repo-server/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/templates/argocd-repo-server/service.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/templates/argocd-repo-server/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/templates/argocd-repo-server/serviceaccount.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/templates/argocd-repo-server/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/templates/argocd-repo-server/servicemonitor.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/templates/argocd-server/aws/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/templates/argocd-server/aws/service.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/templates/argocd-server/certificate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/templates/argocd-server/certificate.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/templates/argocd-server/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/templates/argocd-server/clusterrole.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/templates/argocd-server/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/templates/argocd-server/clusterrolebinding.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/templates/argocd-server/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/templates/argocd-server/deployment.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/templates/argocd-server/gke/backendconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/templates/argocd-server/gke/backendconfig.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/templates/argocd-server/gke/frontendconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/templates/argocd-server/gke/frontendconfig.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/templates/argocd-server/gke/managedcertificate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/templates/argocd-server/gke/managedcertificate.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/templates/argocd-server/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/templates/argocd-server/hpa.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/templates/argocd-server/ingress-grpc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/templates/argocd-server/ingress-grpc.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/templates/argocd-server/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/templates/argocd-server/ingress.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/templates/argocd-server/metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/templates/argocd-server/metrics.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/templates/argocd-server/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/templates/argocd-server/networkpolicy.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/templates/argocd-server/openshift/route.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/templates/argocd-server/openshift/route.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/templates/argocd-server/pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/templates/argocd-server/pdb.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/templates/argocd-server/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/templates/argocd-server/role.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/templates/argocd-server/rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/templates/argocd-server/rolebinding.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/templates/argocd-server/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/templates/argocd-server/service.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/templates/argocd-server/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/templates/argocd-server/serviceaccount.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/templates/argocd-server/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/templates/argocd-server/servicemonitor.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/templates/crds/crd-application.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/templates/crds/crd-application.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/templates/crds/crd-applicationset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/templates/crds/crd-applicationset.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/templates/crds/crd-extension.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/templates/crds/crd-extension.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/templates/crds/crd-project.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/templates/crds/crd-project.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/templates/dex/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/templates/dex/deployment.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/templates/dex/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/templates/dex/networkpolicy.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/templates/dex/pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/templates/dex/pdb.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/templates/dex/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/templates/dex/role.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/templates/dex/rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/templates/dex/rolebinding.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/templates/dex/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/templates/dex/service.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/templates/dex/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/templates/dex/serviceaccount.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/templates/dex/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/templates/dex/servicemonitor.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/templates/extra-manifests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/templates/extra-manifests.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/templates/networkpolicy-default-deny.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/templates/networkpolicy-default-deny.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/templates/redis/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/templates/redis/deployment.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/templates/redis/metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/templates/redis/metrics.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/templates/redis/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/templates/redis/networkpolicy.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/templates/redis/pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/templates/redis/pdb.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/templates/redis/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/templates/redis/service.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/templates/redis/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/templates/redis/serviceaccount.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/templates/redis/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/templates/redis/servicemonitor.yaml -------------------------------------------------------------------------------- /official/argo-cd/5.45.5/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/5.45.5/values.yaml -------------------------------------------------------------------------------- /official/argo-cd/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/Chart.lock -------------------------------------------------------------------------------- /official/argo-cd/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/Chart.yaml -------------------------------------------------------------------------------- /official/argo-cd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/README.md -------------------------------------------------------------------------------- /official/argo-cd/charts/redis-ha/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/charts/redis-ha/Chart.yaml -------------------------------------------------------------------------------- /official/argo-cd/charts/redis-ha/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/charts/redis-ha/README.md -------------------------------------------------------------------------------- /official/argo-cd/charts/redis-ha/ci/haproxy-enabled-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/charts/redis-ha/ci/haproxy-enabled-values.yaml -------------------------------------------------------------------------------- /official/argo-cd/charts/redis-ha/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/charts/redis-ha/templates/NOTES.txt -------------------------------------------------------------------------------- /official/argo-cd/charts/redis-ha/templates/_configs.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/charts/redis-ha/templates/_configs.tpl -------------------------------------------------------------------------------- /official/argo-cd/charts/redis-ha/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/charts/redis-ha/templates/_helpers.tpl -------------------------------------------------------------------------------- /official/argo-cd/charts/redis-ha/templates/redis-auth-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/charts/redis-ha/templates/redis-auth-secret.yaml -------------------------------------------------------------------------------- /official/argo-cd/charts/redis-ha/templates/redis-ha-announce-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/charts/redis-ha/templates/redis-ha-announce-service.yaml -------------------------------------------------------------------------------- /official/argo-cd/charts/redis-ha/templates/redis-ha-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/charts/redis-ha/templates/redis-ha-configmap.yaml -------------------------------------------------------------------------------- /official/argo-cd/charts/redis-ha/templates/redis-ha-health-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/charts/redis-ha/templates/redis-ha-health-configmap.yaml -------------------------------------------------------------------------------- /official/argo-cd/charts/redis-ha/templates/redis-ha-network-policy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/charts/redis-ha/templates/redis-ha-network-policy.yaml -------------------------------------------------------------------------------- /official/argo-cd/charts/redis-ha/templates/redis-ha-pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/charts/redis-ha/templates/redis-ha-pdb.yaml -------------------------------------------------------------------------------- /official/argo-cd/charts/redis-ha/templates/redis-ha-prometheus-rule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/charts/redis-ha/templates/redis-ha-prometheus-rule.yaml -------------------------------------------------------------------------------- /official/argo-cd/charts/redis-ha/templates/redis-ha-role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/charts/redis-ha/templates/redis-ha-role.yaml -------------------------------------------------------------------------------- /official/argo-cd/charts/redis-ha/templates/redis-ha-rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/charts/redis-ha/templates/redis-ha-rolebinding.yaml -------------------------------------------------------------------------------- /official/argo-cd/charts/redis-ha/templates/redis-ha-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/charts/redis-ha/templates/redis-ha-secret.yaml -------------------------------------------------------------------------------- /official/argo-cd/charts/redis-ha/templates/redis-ha-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/charts/redis-ha/templates/redis-ha-service.yaml -------------------------------------------------------------------------------- /official/argo-cd/charts/redis-ha/templates/redis-ha-serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/charts/redis-ha/templates/redis-ha-serviceaccount.yaml -------------------------------------------------------------------------------- /official/argo-cd/charts/redis-ha/templates/redis-ha-servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/charts/redis-ha/templates/redis-ha-servicemonitor.yaml -------------------------------------------------------------------------------- /official/argo-cd/charts/redis-ha/templates/redis-ha-statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/charts/redis-ha/templates/redis-ha-statefulset.yaml -------------------------------------------------------------------------------- /official/argo-cd/charts/redis-ha/templates/redis-haproxy-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/charts/redis-ha/templates/redis-haproxy-deployment.yaml -------------------------------------------------------------------------------- /official/argo-cd/charts/redis-ha/templates/redis-haproxy-pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/charts/redis-ha/templates/redis-haproxy-pdb.yaml -------------------------------------------------------------------------------- /official/argo-cd/charts/redis-ha/templates/redis-haproxy-role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/charts/redis-ha/templates/redis-haproxy-role.yaml -------------------------------------------------------------------------------- /official/argo-cd/charts/redis-ha/templates/redis-haproxy-rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/charts/redis-ha/templates/redis-haproxy-rolebinding.yaml -------------------------------------------------------------------------------- /official/argo-cd/charts/redis-ha/templates/redis-haproxy-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/charts/redis-ha/templates/redis-haproxy-service.yaml -------------------------------------------------------------------------------- /official/argo-cd/charts/redis-ha/templates/redis-haproxy-serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/charts/redis-ha/templates/redis-haproxy-serviceaccount.yaml -------------------------------------------------------------------------------- /official/argo-cd/charts/redis-ha/templates/redis-haproxy-servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/charts/redis-ha/templates/redis-haproxy-servicemonitor.yaml -------------------------------------------------------------------------------- /official/argo-cd/charts/redis-ha/templates/redis-tls-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/charts/redis-ha/templates/redis-tls-secret.yaml -------------------------------------------------------------------------------- /official/argo-cd/charts/redis-ha/templates/sentinel-auth-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/charts/redis-ha/templates/sentinel-auth-secret.yaml -------------------------------------------------------------------------------- /official/argo-cd/charts/redis-ha/templates/tests/test-redis-ha-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/charts/redis-ha/templates/tests/test-redis-ha-configmap.yaml -------------------------------------------------------------------------------- /official/argo-cd/charts/redis-ha/templates/tests/test-redis-ha-pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/charts/redis-ha/templates/tests/test-redis-ha-pod.yaml -------------------------------------------------------------------------------- /official/argo-cd/charts/redis-ha/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/charts/redis-ha/values.yaml -------------------------------------------------------------------------------- /official/argo-cd/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/templates/NOTES.txt -------------------------------------------------------------------------------- /official/argo-cd/templates/_common.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/templates/_common.tpl -------------------------------------------------------------------------------- /official/argo-cd/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/templates/_helpers.tpl -------------------------------------------------------------------------------- /official/argo-cd/templates/_versions.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/templates/_versions.tpl -------------------------------------------------------------------------------- /official/argo-cd/templates/aggregate-roles.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/templates/aggregate-roles.yaml -------------------------------------------------------------------------------- /official/argo-cd/templates/argocd-application-controller/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/templates/argocd-application-controller/clusterrole.yaml -------------------------------------------------------------------------------- /official/argo-cd/templates/argocd-application-controller/metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/templates/argocd-application-controller/metrics.yaml -------------------------------------------------------------------------------- /official/argo-cd/templates/argocd-application-controller/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/templates/argocd-application-controller/networkpolicy.yaml -------------------------------------------------------------------------------- /official/argo-cd/templates/argocd-application-controller/pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/templates/argocd-application-controller/pdb.yaml -------------------------------------------------------------------------------- /official/argo-cd/templates/argocd-application-controller/prometheusrule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/templates/argocd-application-controller/prometheusrule.yaml -------------------------------------------------------------------------------- /official/argo-cd/templates/argocd-application-controller/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/templates/argocd-application-controller/role.yaml -------------------------------------------------------------------------------- /official/argo-cd/templates/argocd-application-controller/rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/templates/argocd-application-controller/rolebinding.yaml -------------------------------------------------------------------------------- /official/argo-cd/templates/argocd-application-controller/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/templates/argocd-application-controller/serviceaccount.yaml -------------------------------------------------------------------------------- /official/argo-cd/templates/argocd-application-controller/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/templates/argocd-application-controller/servicemonitor.yaml -------------------------------------------------------------------------------- /official/argo-cd/templates/argocd-application-controller/statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/templates/argocd-application-controller/statefulset.yaml -------------------------------------------------------------------------------- /official/argo-cd/templates/argocd-applicationset/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/templates/argocd-applicationset/deployment.yaml -------------------------------------------------------------------------------- /official/argo-cd/templates/argocd-applicationset/metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/templates/argocd-applicationset/metrics.yaml -------------------------------------------------------------------------------- /official/argo-cd/templates/argocd-applicationset/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/templates/argocd-applicationset/networkpolicy.yaml -------------------------------------------------------------------------------- /official/argo-cd/templates/argocd-applicationset/pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/templates/argocd-applicationset/pdb.yaml -------------------------------------------------------------------------------- /official/argo-cd/templates/argocd-applicationset/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/templates/argocd-applicationset/role.yaml -------------------------------------------------------------------------------- /official/argo-cd/templates/argocd-applicationset/rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/templates/argocd-applicationset/rolebinding.yaml -------------------------------------------------------------------------------- /official/argo-cd/templates/argocd-applicationset/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/templates/argocd-applicationset/service.yaml -------------------------------------------------------------------------------- /official/argo-cd/templates/argocd-applicationset/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/templates/argocd-applicationset/serviceaccount.yaml -------------------------------------------------------------------------------- /official/argo-cd/templates/argocd-applicationset/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/templates/argocd-applicationset/servicemonitor.yaml -------------------------------------------------------------------------------- /official/argo-cd/templates/argocd-applicationset/webhook-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/templates/argocd-applicationset/webhook-ingress.yaml -------------------------------------------------------------------------------- /official/argo-cd/templates/argocd-configs/argocd-cm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/templates/argocd-configs/argocd-cm.yaml -------------------------------------------------------------------------------- /official/argo-cd/templates/argocd-configs/argocd-cmd-params-cm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/templates/argocd-configs/argocd-cmd-params-cm.yaml -------------------------------------------------------------------------------- /official/argo-cd/templates/argocd-configs/argocd-gpg-keys-cm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/templates/argocd-configs/argocd-gpg-keys-cm.yaml -------------------------------------------------------------------------------- /official/argo-cd/templates/argocd-configs/argocd-notifications-cm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/templates/argocd-configs/argocd-notifications-cm.yaml -------------------------------------------------------------------------------- /official/argo-cd/templates/argocd-configs/argocd-notifications-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/templates/argocd-configs/argocd-notifications-secret.yaml -------------------------------------------------------------------------------- /official/argo-cd/templates/argocd-configs/argocd-rbac-cm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/templates/argocd-configs/argocd-rbac-cm.yaml -------------------------------------------------------------------------------- /official/argo-cd/templates/argocd-configs/argocd-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/templates/argocd-configs/argocd-secret.yaml -------------------------------------------------------------------------------- /official/argo-cd/templates/argocd-configs/argocd-ssh-known-hosts-cm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/templates/argocd-configs/argocd-ssh-known-hosts-cm.yaml -------------------------------------------------------------------------------- /official/argo-cd/templates/argocd-configs/argocd-styles-cm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/templates/argocd-configs/argocd-styles-cm.yaml -------------------------------------------------------------------------------- /official/argo-cd/templates/argocd-configs/argocd-tls-certs-cm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/templates/argocd-configs/argocd-tls-certs-cm.yaml -------------------------------------------------------------------------------- /official/argo-cd/templates/argocd-configs/cluster-secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/templates/argocd-configs/cluster-secrets.yaml -------------------------------------------------------------------------------- /official/argo-cd/templates/argocd-configs/externalredis-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/templates/argocd-configs/externalredis-secret.yaml -------------------------------------------------------------------------------- /official/argo-cd/templates/argocd-configs/repository-credentials-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/templates/argocd-configs/repository-credentials-secret.yaml -------------------------------------------------------------------------------- /official/argo-cd/templates/argocd-configs/repository-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/templates/argocd-configs/repository-secret.yaml -------------------------------------------------------------------------------- /official/argo-cd/templates/argocd-notifications/bots/slack/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/templates/argocd-notifications/bots/slack/deployment.yaml -------------------------------------------------------------------------------- /official/argo-cd/templates/argocd-notifications/bots/slack/pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/templates/argocd-notifications/bots/slack/pdb.yaml -------------------------------------------------------------------------------- /official/argo-cd/templates/argocd-notifications/bots/slack/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/templates/argocd-notifications/bots/slack/role.yaml -------------------------------------------------------------------------------- /official/argo-cd/templates/argocd-notifications/bots/slack/rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/templates/argocd-notifications/bots/slack/rolebinding.yaml -------------------------------------------------------------------------------- /official/argo-cd/templates/argocd-notifications/bots/slack/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/templates/argocd-notifications/bots/slack/service.yaml -------------------------------------------------------------------------------- /official/argo-cd/templates/argocd-notifications/bots/slack/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/templates/argocd-notifications/bots/slack/serviceaccount.yaml -------------------------------------------------------------------------------- /official/argo-cd/templates/argocd-notifications/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/templates/argocd-notifications/deployment.yaml -------------------------------------------------------------------------------- /official/argo-cd/templates/argocd-notifications/metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/templates/argocd-notifications/metrics.yaml -------------------------------------------------------------------------------- /official/argo-cd/templates/argocd-notifications/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/templates/argocd-notifications/networkpolicy.yaml -------------------------------------------------------------------------------- /official/argo-cd/templates/argocd-notifications/pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/templates/argocd-notifications/pdb.yaml -------------------------------------------------------------------------------- /official/argo-cd/templates/argocd-notifications/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/templates/argocd-notifications/role.yaml -------------------------------------------------------------------------------- /official/argo-cd/templates/argocd-notifications/rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/templates/argocd-notifications/rolebinding.yaml -------------------------------------------------------------------------------- /official/argo-cd/templates/argocd-notifications/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/templates/argocd-notifications/serviceaccount.yaml -------------------------------------------------------------------------------- /official/argo-cd/templates/argocd-notifications/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/templates/argocd-notifications/servicemonitor.yaml -------------------------------------------------------------------------------- /official/argo-cd/templates/argocd-repo-server/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/templates/argocd-repo-server/clusterrole.yaml -------------------------------------------------------------------------------- /official/argo-cd/templates/argocd-repo-server/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/templates/argocd-repo-server/clusterrolebinding.yaml -------------------------------------------------------------------------------- /official/argo-cd/templates/argocd-repo-server/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/templates/argocd-repo-server/deployment.yaml -------------------------------------------------------------------------------- /official/argo-cd/templates/argocd-repo-server/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/templates/argocd-repo-server/hpa.yaml -------------------------------------------------------------------------------- /official/argo-cd/templates/argocd-repo-server/metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/templates/argocd-repo-server/metrics.yaml -------------------------------------------------------------------------------- /official/argo-cd/templates/argocd-repo-server/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/templates/argocd-repo-server/networkpolicy.yaml -------------------------------------------------------------------------------- /official/argo-cd/templates/argocd-repo-server/pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/templates/argocd-repo-server/pdb.yaml -------------------------------------------------------------------------------- /official/argo-cd/templates/argocd-repo-server/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/templates/argocd-repo-server/role.yaml -------------------------------------------------------------------------------- /official/argo-cd/templates/argocd-repo-server/rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/templates/argocd-repo-server/rolebinding.yaml -------------------------------------------------------------------------------- /official/argo-cd/templates/argocd-repo-server/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/templates/argocd-repo-server/service.yaml -------------------------------------------------------------------------------- /official/argo-cd/templates/argocd-repo-server/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/templates/argocd-repo-server/serviceaccount.yaml -------------------------------------------------------------------------------- /official/argo-cd/templates/argocd-repo-server/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/templates/argocd-repo-server/servicemonitor.yaml -------------------------------------------------------------------------------- /official/argo-cd/templates/argocd-server/aws/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/templates/argocd-server/aws/service.yaml -------------------------------------------------------------------------------- /official/argo-cd/templates/argocd-server/certificate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/templates/argocd-server/certificate.yaml -------------------------------------------------------------------------------- /official/argo-cd/templates/argocd-server/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/templates/argocd-server/clusterrole.yaml -------------------------------------------------------------------------------- /official/argo-cd/templates/argocd-server/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/templates/argocd-server/clusterrolebinding.yaml -------------------------------------------------------------------------------- /official/argo-cd/templates/argocd-server/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/templates/argocd-server/deployment.yaml -------------------------------------------------------------------------------- /official/argo-cd/templates/argocd-server/gke/backendconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/templates/argocd-server/gke/backendconfig.yaml -------------------------------------------------------------------------------- /official/argo-cd/templates/argocd-server/gke/frontendconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/templates/argocd-server/gke/frontendconfig.yaml -------------------------------------------------------------------------------- /official/argo-cd/templates/argocd-server/gke/managedcertificate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/templates/argocd-server/gke/managedcertificate.yaml -------------------------------------------------------------------------------- /official/argo-cd/templates/argocd-server/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/templates/argocd-server/hpa.yaml -------------------------------------------------------------------------------- /official/argo-cd/templates/argocd-server/ingress-grpc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/templates/argocd-server/ingress-grpc.yaml -------------------------------------------------------------------------------- /official/argo-cd/templates/argocd-server/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/templates/argocd-server/ingress.yaml -------------------------------------------------------------------------------- /official/argo-cd/templates/argocd-server/metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/templates/argocd-server/metrics.yaml -------------------------------------------------------------------------------- /official/argo-cd/templates/argocd-server/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/templates/argocd-server/networkpolicy.yaml -------------------------------------------------------------------------------- /official/argo-cd/templates/argocd-server/openshift/route.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/templates/argocd-server/openshift/route.yaml -------------------------------------------------------------------------------- /official/argo-cd/templates/argocd-server/pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/templates/argocd-server/pdb.yaml -------------------------------------------------------------------------------- /official/argo-cd/templates/argocd-server/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/templates/argocd-server/role.yaml -------------------------------------------------------------------------------- /official/argo-cd/templates/argocd-server/rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/templates/argocd-server/rolebinding.yaml -------------------------------------------------------------------------------- /official/argo-cd/templates/argocd-server/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/templates/argocd-server/service.yaml -------------------------------------------------------------------------------- /official/argo-cd/templates/argocd-server/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/templates/argocd-server/serviceaccount.yaml -------------------------------------------------------------------------------- /official/argo-cd/templates/argocd-server/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/templates/argocd-server/servicemonitor.yaml -------------------------------------------------------------------------------- /official/argo-cd/templates/crds/crd-application.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/templates/crds/crd-application.yaml -------------------------------------------------------------------------------- /official/argo-cd/templates/crds/crd-applicationset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/templates/crds/crd-applicationset.yaml -------------------------------------------------------------------------------- /official/argo-cd/templates/crds/crd-extension.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/templates/crds/crd-extension.yaml -------------------------------------------------------------------------------- /official/argo-cd/templates/crds/crd-project.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/templates/crds/crd-project.yaml -------------------------------------------------------------------------------- /official/argo-cd/templates/dex/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/templates/dex/deployment.yaml -------------------------------------------------------------------------------- /official/argo-cd/templates/dex/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/templates/dex/networkpolicy.yaml -------------------------------------------------------------------------------- /official/argo-cd/templates/dex/pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/templates/dex/pdb.yaml -------------------------------------------------------------------------------- /official/argo-cd/templates/dex/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/templates/dex/role.yaml -------------------------------------------------------------------------------- /official/argo-cd/templates/dex/rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/templates/dex/rolebinding.yaml -------------------------------------------------------------------------------- /official/argo-cd/templates/dex/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/templates/dex/service.yaml -------------------------------------------------------------------------------- /official/argo-cd/templates/dex/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/templates/dex/serviceaccount.yaml -------------------------------------------------------------------------------- /official/argo-cd/templates/dex/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/templates/dex/servicemonitor.yaml -------------------------------------------------------------------------------- /official/argo-cd/templates/extra-manifests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/templates/extra-manifests.yaml -------------------------------------------------------------------------------- /official/argo-cd/templates/networkpolicy-default-deny.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/templates/networkpolicy-default-deny.yaml -------------------------------------------------------------------------------- /official/argo-cd/templates/redis/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/templates/redis/deployment.yaml -------------------------------------------------------------------------------- /official/argo-cd/templates/redis/metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/templates/redis/metrics.yaml -------------------------------------------------------------------------------- /official/argo-cd/templates/redis/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/templates/redis/networkpolicy.yaml -------------------------------------------------------------------------------- /official/argo-cd/templates/redis/pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/templates/redis/pdb.yaml -------------------------------------------------------------------------------- /official/argo-cd/templates/redis/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/templates/redis/service.yaml -------------------------------------------------------------------------------- /official/argo-cd/templates/redis/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/templates/redis/serviceaccount.yaml -------------------------------------------------------------------------------- /official/argo-cd/templates/redis/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/templates/redis/servicemonitor.yaml -------------------------------------------------------------------------------- /official/argo-cd/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argo-cd/values.yaml -------------------------------------------------------------------------------- /official/argocd-apps/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argocd-apps/.gitignore -------------------------------------------------------------------------------- /official/argocd-apps/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argocd-apps/Chart.yaml -------------------------------------------------------------------------------- /official/argocd-apps/README.md: -------------------------------------------------------------------------------- 1 | # ARGOCD PROJECT CUSTOM NGINX 2 | 3 | -------------------------------------------------------------------------------- /official/argocd-apps/README.md.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argocd-apps/README.md.gotmpl -------------------------------------------------------------------------------- /official/argocd-apps/ci/applicationsets-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argocd-apps/ci/applicationsets-values.yaml -------------------------------------------------------------------------------- /official/argocd-apps/ci/default-values.yaml: -------------------------------------------------------------------------------- 1 | # Test with default values 2 | -------------------------------------------------------------------------------- /official/argocd-apps/ci/extensions-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argocd-apps/ci/extensions-values.yaml -------------------------------------------------------------------------------- /official/argocd-apps/templates/applications.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argocd-apps/templates/applications.yaml -------------------------------------------------------------------------------- /official/argocd-apps/templates/applicationsets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argocd-apps/templates/applicationsets.yaml -------------------------------------------------------------------------------- /official/argocd-apps/templates/extensions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argocd-apps/templates/extensions.yaml -------------------------------------------------------------------------------- /official/argocd-apps/templates/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argocd-apps/templates/namespace.yaml -------------------------------------------------------------------------------- /official/argocd-apps/templates/projects.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argocd-apps/templates/projects.yaml -------------------------------------------------------------------------------- /official/argocd-apps/values-first.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argocd-apps/values-first.yaml -------------------------------------------------------------------------------- /official/argocd-apps/values-second.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argocd-apps/values-second.yaml -------------------------------------------------------------------------------- /official/argocd-apps/values.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /official/argocd-image-updater/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argocd-image-updater/.helmignore -------------------------------------------------------------------------------- /official/argocd-image-updater/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argocd-image-updater/Chart.yaml -------------------------------------------------------------------------------- /official/argocd-image-updater/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argocd-image-updater/README.md -------------------------------------------------------------------------------- /official/argocd-image-updater/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argocd-image-updater/templates/_helpers.tpl -------------------------------------------------------------------------------- /official/argocd-image-updater/templates/configmap-authscripts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argocd-image-updater/templates/configmap-authscripts.yaml -------------------------------------------------------------------------------- /official/argocd-image-updater/templates/configmap-sshconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argocd-image-updater/templates/configmap-sshconfig.yaml -------------------------------------------------------------------------------- /official/argocd-image-updater/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argocd-image-updater/templates/configmap.yaml -------------------------------------------------------------------------------- /official/argocd-image-updater/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argocd-image-updater/templates/deployment.yaml -------------------------------------------------------------------------------- /official/argocd-image-updater/templates/metrics-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argocd-image-updater/templates/metrics-service.yaml -------------------------------------------------------------------------------- /official/argocd-image-updater/templates/rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argocd-image-updater/templates/rbac.yaml -------------------------------------------------------------------------------- /official/argocd-image-updater/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argocd-image-updater/templates/secret.yaml -------------------------------------------------------------------------------- /official/argocd-image-updater/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argocd-image-updater/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /official/argocd-image-updater/templates/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argocd-image-updater/templates/servicemonitor.yaml -------------------------------------------------------------------------------- /official/argocd-image-updater/values-custom.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argocd-image-updater/values-custom.yaml -------------------------------------------------------------------------------- /official/argocd-image-updater/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/argocd-image-updater/values.yaml -------------------------------------------------------------------------------- /official/examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/examples/README.md -------------------------------------------------------------------------------- /official/examples/apps/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/examples/apps/Chart.yaml -------------------------------------------------------------------------------- /official/examples/apps/templates/helm-guestbook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/examples/apps/templates/helm-guestbook.yaml -------------------------------------------------------------------------------- /official/examples/apps/templates/helm-hooks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/examples/apps/templates/helm-hooks.yaml -------------------------------------------------------------------------------- /official/examples/apps/templates/kustomize-guestbook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/examples/apps/templates/kustomize-guestbook.yaml -------------------------------------------------------------------------------- /official/examples/apps/templates/namespaces.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/examples/apps/templates/namespaces.yaml -------------------------------------------------------------------------------- /official/examples/apps/templates/sync-waves.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/examples/apps/templates/sync-waves.yaml -------------------------------------------------------------------------------- /official/examples/apps/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/examples/apps/values.yaml -------------------------------------------------------------------------------- /official/examples/blue-green/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/examples/blue-green/.helmignore -------------------------------------------------------------------------------- /official/examples/blue-green/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/examples/blue-green/Chart.yaml -------------------------------------------------------------------------------- /official/examples/blue-green/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/examples/blue-green/README.md -------------------------------------------------------------------------------- /official/examples/blue-green/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/examples/blue-green/templates/NOTES.txt -------------------------------------------------------------------------------- /official/examples/blue-green/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/examples/blue-green/templates/_helpers.tpl -------------------------------------------------------------------------------- /official/examples/blue-green/templates/rollout.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/examples/blue-green/templates/rollout.yaml -------------------------------------------------------------------------------- /official/examples/blue-green/templates/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/examples/blue-green/templates/services.yaml -------------------------------------------------------------------------------- /official/examples/blue-green/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/examples/blue-green/values.yaml -------------------------------------------------------------------------------- /official/examples/guestbook/guestbook-ui-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/examples/guestbook/guestbook-ui-deployment.yaml -------------------------------------------------------------------------------- /official/examples/guestbook/guestbook-ui-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/examples/guestbook/guestbook-ui-svc.yaml -------------------------------------------------------------------------------- /official/examples/helm-dependency/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/examples/helm-dependency/Chart.yaml -------------------------------------------------------------------------------- /official/examples/helm-dependency/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/examples/helm-dependency/README.md -------------------------------------------------------------------------------- /official/examples/helm-dependency/values-nomaria.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/examples/helm-dependency/values-nomaria.yaml -------------------------------------------------------------------------------- /official/examples/helm-dependency/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/examples/helm-dependency/values.yaml -------------------------------------------------------------------------------- /official/examples/helm-guestbook/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/examples/helm-guestbook/.helmignore -------------------------------------------------------------------------------- /official/examples/helm-guestbook/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/examples/helm-guestbook/Chart.yaml -------------------------------------------------------------------------------- /official/examples/helm-guestbook/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/examples/helm-guestbook/templates/NOTES.txt -------------------------------------------------------------------------------- /official/examples/helm-guestbook/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/examples/helm-guestbook/templates/_helpers.tpl -------------------------------------------------------------------------------- /official/examples/helm-guestbook/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/examples/helm-guestbook/templates/deployment.yaml -------------------------------------------------------------------------------- /official/examples/helm-guestbook/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/examples/helm-guestbook/templates/service.yaml -------------------------------------------------------------------------------- /official/examples/helm-guestbook/values-dev.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/examples/helm-guestbook/values-dev.yaml -------------------------------------------------------------------------------- /official/examples/helm-guestbook/values-pro.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/examples/helm-guestbook/values-pro.yaml -------------------------------------------------------------------------------- /official/examples/helm-guestbook/values-production.yaml: -------------------------------------------------------------------------------- 1 | service: 2 | type: LoadBalancer 3 | -------------------------------------------------------------------------------- /official/examples/helm-guestbook/values-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/examples/helm-guestbook/values-test.yaml -------------------------------------------------------------------------------- /official/examples/helm-guestbook/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/examples/helm-guestbook/values.yaml -------------------------------------------------------------------------------- /official/examples/helm-hooks/manifests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/examples/helm-hooks/manifests.yaml -------------------------------------------------------------------------------- /official/examples/jsonnet-guestbook-tla/guestbook-ui.jsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/examples/jsonnet-guestbook-tla/guestbook-ui.jsonnet -------------------------------------------------------------------------------- /official/examples/jsonnet-guestbook/guestbook-ui.jsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/examples/jsonnet-guestbook/guestbook-ui.jsonnet -------------------------------------------------------------------------------- /official/examples/jsonnet-guestbook/params.libsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/examples/jsonnet-guestbook/params.libsonnet -------------------------------------------------------------------------------- /official/examples/ksonnet-guestbook/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/examples/ksonnet-guestbook/.gitignore -------------------------------------------------------------------------------- /official/examples/ksonnet-guestbook/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/examples/ksonnet-guestbook/app.yaml -------------------------------------------------------------------------------- /official/examples/ksonnet-guestbook/components/guestbook-ui.jsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/examples/ksonnet-guestbook/components/guestbook-ui.jsonnet -------------------------------------------------------------------------------- /official/examples/ksonnet-guestbook/components/params.libsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/examples/ksonnet-guestbook/components/params.libsonnet -------------------------------------------------------------------------------- /official/examples/ksonnet-guestbook/environments/base.libsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/examples/ksonnet-guestbook/environments/base.libsonnet -------------------------------------------------------------------------------- /official/examples/ksonnet-guestbook/environments/default/globals.libsonnet: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /official/examples/ksonnet-guestbook/environments/default/main.jsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/examples/ksonnet-guestbook/environments/default/main.jsonnet -------------------------------------------------------------------------------- /official/examples/ksonnet-guestbook/environments/default/params.libsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/examples/ksonnet-guestbook/environments/default/params.libsonnet -------------------------------------------------------------------------------- /official/examples/ksonnet-guestbook/environments/dev/globals.libsonnet: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /official/examples/ksonnet-guestbook/environments/dev/main.jsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/examples/ksonnet-guestbook/environments/dev/main.jsonnet -------------------------------------------------------------------------------- /official/examples/ksonnet-guestbook/environments/dev/params.libsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/examples/ksonnet-guestbook/environments/dev/params.libsonnet -------------------------------------------------------------------------------- /official/examples/ksonnet-guestbook/environments/prod/globals.libsonnet: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /official/examples/ksonnet-guestbook/environments/prod/main.jsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/examples/ksonnet-guestbook/environments/prod/main.jsonnet -------------------------------------------------------------------------------- /official/examples/ksonnet-guestbook/environments/prod/params.libsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/examples/ksonnet-guestbook/environments/prod/params.libsonnet -------------------------------------------------------------------------------- /official/examples/kustomize-guestbook/guestbook-ui-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/examples/kustomize-guestbook/guestbook-ui-deployment.yaml -------------------------------------------------------------------------------- /official/examples/kustomize-guestbook/guestbook-ui-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/examples/kustomize-guestbook/guestbook-ui-svc.yaml -------------------------------------------------------------------------------- /official/examples/kustomize-guestbook/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/examples/kustomize-guestbook/kustomization.yaml -------------------------------------------------------------------------------- /official/examples/plugins/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/examples/plugins/README.md -------------------------------------------------------------------------------- /official/examples/plugins/kasane/.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | Kasanefile.lock 3 | -------------------------------------------------------------------------------- /official/examples/plugins/kasane/Kasanefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/examples/plugins/kasane/Kasanefile -------------------------------------------------------------------------------- /official/examples/plugins/kasane/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/examples/plugins/kasane/README.md -------------------------------------------------------------------------------- /official/examples/plugins/kasane/patch.jsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/examples/plugins/kasane/patch.jsonnet -------------------------------------------------------------------------------- /official/examples/plugins/kustomized-helm/.gitignore: -------------------------------------------------------------------------------- 1 | all.yaml 2 | charts 3 | requirements.lock 4 | -------------------------------------------------------------------------------- /official/examples/plugins/kustomized-helm/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/examples/plugins/kustomized-helm/Chart.yaml -------------------------------------------------------------------------------- /official/examples/plugins/kustomized-helm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/examples/plugins/kustomized-helm/README.md -------------------------------------------------------------------------------- /official/examples/plugins/kustomized-helm/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/examples/plugins/kustomized-helm/kustomization.yaml -------------------------------------------------------------------------------- /official/examples/plugins/kustomized-helm/overlays/guestbook-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/examples/plugins/kustomized-helm/overlays/guestbook-deployment.yaml -------------------------------------------------------------------------------- /official/examples/pre-post-sync/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/examples/pre-post-sync/kustomization.yaml -------------------------------------------------------------------------------- /official/examples/pre-post-sync/post-sync-job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/examples/pre-post-sync/post-sync-job.yaml -------------------------------------------------------------------------------- /official/examples/pre-post-sync/pre-sync-job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/examples/pre-post-sync/pre-sync-job.yaml -------------------------------------------------------------------------------- /official/examples/sock-shop/base/carts-db-dep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/examples/sock-shop/base/carts-db-dep.yaml -------------------------------------------------------------------------------- /official/examples/sock-shop/base/carts-db-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/examples/sock-shop/base/carts-db-svc.yaml -------------------------------------------------------------------------------- /official/examples/sock-shop/base/carts-dep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/examples/sock-shop/base/carts-dep.yaml -------------------------------------------------------------------------------- /official/examples/sock-shop/base/catalogue-db-dep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/examples/sock-shop/base/catalogue-db-dep.yaml -------------------------------------------------------------------------------- /official/examples/sock-shop/base/catalogue-db-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/examples/sock-shop/base/catalogue-db-svc.yaml -------------------------------------------------------------------------------- /official/examples/sock-shop/base/catalogue-dep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/examples/sock-shop/base/catalogue-dep.yaml -------------------------------------------------------------------------------- /official/examples/sock-shop/base/catalogue-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/examples/sock-shop/base/catalogue-svc.yaml -------------------------------------------------------------------------------- /official/examples/sock-shop/base/front-end-dep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/examples/sock-shop/base/front-end-dep.yaml -------------------------------------------------------------------------------- /official/examples/sock-shop/base/front-end-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/examples/sock-shop/base/front-end-svc.yaml -------------------------------------------------------------------------------- /official/examples/sock-shop/base/orders-db-dep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/examples/sock-shop/base/orders-db-dep.yaml -------------------------------------------------------------------------------- /official/examples/sock-shop/base/orders-db-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/examples/sock-shop/base/orders-db-svc.yaml -------------------------------------------------------------------------------- /official/examples/sock-shop/base/orders-dep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/examples/sock-shop/base/orders-dep.yaml -------------------------------------------------------------------------------- /official/examples/sock-shop/base/orders-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/examples/sock-shop/base/orders-svc.yaml -------------------------------------------------------------------------------- /official/examples/sock-shop/base/payment-dep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/examples/sock-shop/base/payment-dep.yaml -------------------------------------------------------------------------------- /official/examples/sock-shop/base/payment-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/examples/sock-shop/base/payment-svc.yaml -------------------------------------------------------------------------------- /official/examples/sock-shop/base/queue-master-dep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/examples/sock-shop/base/queue-master-dep.yaml -------------------------------------------------------------------------------- /official/examples/sock-shop/base/queue-master-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/examples/sock-shop/base/queue-master-svc.yaml -------------------------------------------------------------------------------- /official/examples/sock-shop/base/rabbitmq-dep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/examples/sock-shop/base/rabbitmq-dep.yaml -------------------------------------------------------------------------------- /official/examples/sock-shop/base/rabbitmq-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/examples/sock-shop/base/rabbitmq-svc.yaml -------------------------------------------------------------------------------- /official/examples/sock-shop/base/session-db-dep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/examples/sock-shop/base/session-db-dep.yaml -------------------------------------------------------------------------------- /official/examples/sock-shop/base/session-db-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/examples/sock-shop/base/session-db-svc.yaml -------------------------------------------------------------------------------- /official/examples/sock-shop/base/shipping-dep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/examples/sock-shop/base/shipping-dep.yaml -------------------------------------------------------------------------------- /official/examples/sock-shop/base/shipping-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/examples/sock-shop/base/shipping-svc.yaml -------------------------------------------------------------------------------- /official/examples/sock-shop/base/user-db-dep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/examples/sock-shop/base/user-db-dep.yaml -------------------------------------------------------------------------------- /official/examples/sock-shop/base/user-db-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/examples/sock-shop/base/user-db-svc.yaml -------------------------------------------------------------------------------- /official/examples/sock-shop/base/user-dep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/examples/sock-shop/base/user-dep.yaml -------------------------------------------------------------------------------- /official/examples/sock-shop/base/user-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/examples/sock-shop/base/user-svc.yaml -------------------------------------------------------------------------------- /official/examples/sock-shop/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/examples/sock-shop/kustomization.yaml -------------------------------------------------------------------------------- /official/examples/sync-waves/manifests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAutomationRules/argocd/HEAD/official/examples/sync-waves/manifests.yaml --------------------------------------------------------------------------------