├── 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-with-sub-directories ├── deployment │ └── deployment.yaml └── service.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-production.yaml └── values.yaml ├── helm-hooks └── manifests.yaml ├── helmcharts ├── istio │ ├── base │ │ ├── Chart.yaml │ │ ├── README.md │ │ ├── crds │ │ │ ├── crd-all.gen.yaml │ │ │ └── crd-operator.yaml │ │ ├── files │ │ │ └── gen-istio-cluster.yaml │ │ ├── kustomization.yaml │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── crds.yaml │ │ │ ├── default.yaml │ │ │ ├── endpoints.yaml │ │ │ ├── reader-serviceaccount.yaml │ │ │ ├── role.yaml │ │ │ ├── rolebinding.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── services.yaml │ │ └── values.yaml │ └── istiod │ │ ├── Chart.yaml │ │ ├── README.md │ │ ├── files │ │ ├── gateway-injection-template.yaml │ │ ├── gen-istio.yaml │ │ ├── grpc-agent.yaml │ │ ├── grpc-simple.yaml │ │ └── injection-template.yaml │ │ ├── kustomization.yaml │ │ ├── templates │ │ ├── NOTES.txt │ │ ├── autoscale.yaml │ │ ├── clusterrole.yaml │ │ ├── clusterrolebinding.yaml │ │ ├── configmap-jwks.yaml │ │ ├── configmap.yaml │ │ ├── deployment.yaml │ │ ├── istiod-injector-configmap.yaml │ │ ├── mutatingwebhook.yaml │ │ ├── poddisruptionbudget.yaml │ │ ├── reader-clusterrole.yaml │ │ ├── reader-clusterrolebinding.yaml │ │ ├── revision-tags.yaml │ │ ├── role.yaml │ │ ├── rolebinding.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ ├── telemetryv2_1.11.yaml │ │ ├── telemetryv2_1.12.yaml │ │ ├── telemetryv2_1.13.yaml │ │ ├── telemetryv2_1.14.yaml │ │ ├── telemetryv2_1.15.yaml │ │ └── validatingwebhookconfiguration.yaml │ │ └── values.yaml └── security-policy-charts │ ├── falco │ ├── .gitkeep │ └── Chart.yaml │ └── kyverno │ ├── .gitkeep │ └── Chart.yaml ├── ingress-nginx └── values.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-options ├── no-prune │ ├── deployment.yaml │ └── service.yaml ├── prune-last │ ├── deployment.yaml │ └── service.yaml ├── replace │ ├── deployment.yaml │ └── service.yaml └── selective-sync │ ├── deployment.yaml │ └── service.yaml ├── sync-phases ├── kustomization.yaml ├── plain-manifests │ ├── post-sync-job.yaml │ ├── pre-sync-job.yaml │ ├── skip-job.yaml │ └── sync-job.yaml ├── post-sync-job.yaml ├── pre-sync-job.yaml ├── skip-job.yaml └── sync-job.yaml └── sync-waves ├── manifests.yaml └── plain-manifests └── manifests.yaml /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/README.md -------------------------------------------------------------------------------- /apps/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/apps/Chart.yaml -------------------------------------------------------------------------------- /apps/templates/helm-guestbook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/apps/templates/helm-guestbook.yaml -------------------------------------------------------------------------------- /apps/templates/helm-hooks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/apps/templates/helm-hooks.yaml -------------------------------------------------------------------------------- /apps/templates/kustomize-guestbook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/apps/templates/kustomize-guestbook.yaml -------------------------------------------------------------------------------- /apps/templates/namespaces.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/apps/templates/namespaces.yaml -------------------------------------------------------------------------------- /apps/templates/sync-waves.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/apps/templates/sync-waves.yaml -------------------------------------------------------------------------------- /apps/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/apps/values.yaml -------------------------------------------------------------------------------- /blue-green/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/blue-green/.helmignore -------------------------------------------------------------------------------- /blue-green/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/blue-green/Chart.yaml -------------------------------------------------------------------------------- /blue-green/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/blue-green/README.md -------------------------------------------------------------------------------- /blue-green/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/blue-green/templates/NOTES.txt -------------------------------------------------------------------------------- /blue-green/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/blue-green/templates/_helpers.tpl -------------------------------------------------------------------------------- /blue-green/templates/rollout.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/blue-green/templates/rollout.yaml -------------------------------------------------------------------------------- /blue-green/templates/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/blue-green/templates/services.yaml -------------------------------------------------------------------------------- /blue-green/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/blue-green/values.yaml -------------------------------------------------------------------------------- /guestbook-with-sub-directories/deployment/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/guestbook-with-sub-directories/deployment/deployment.yaml -------------------------------------------------------------------------------- /guestbook-with-sub-directories/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/guestbook-with-sub-directories/service.yaml -------------------------------------------------------------------------------- /guestbook/guestbook-ui-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/guestbook/guestbook-ui-deployment.yaml -------------------------------------------------------------------------------- /guestbook/guestbook-ui-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/guestbook/guestbook-ui-svc.yaml -------------------------------------------------------------------------------- /helm-dependency/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/helm-dependency/Chart.yaml -------------------------------------------------------------------------------- /helm-dependency/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/helm-dependency/README.md -------------------------------------------------------------------------------- /helm-dependency/values-nomaria.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/helm-dependency/values-nomaria.yaml -------------------------------------------------------------------------------- /helm-dependency/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/helm-dependency/values.yaml -------------------------------------------------------------------------------- /helm-guestbook/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/helm-guestbook/.helmignore -------------------------------------------------------------------------------- /helm-guestbook/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/helm-guestbook/Chart.yaml -------------------------------------------------------------------------------- /helm-guestbook/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/helm-guestbook/templates/NOTES.txt -------------------------------------------------------------------------------- /helm-guestbook/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/helm-guestbook/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm-guestbook/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/helm-guestbook/templates/deployment.yaml -------------------------------------------------------------------------------- /helm-guestbook/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/helm-guestbook/templates/service.yaml -------------------------------------------------------------------------------- /helm-guestbook/values-production.yaml: -------------------------------------------------------------------------------- 1 | service: 2 | type: LoadBalancer 3 | -------------------------------------------------------------------------------- /helm-guestbook/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/helm-guestbook/values.yaml -------------------------------------------------------------------------------- /helm-hooks/manifests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/helm-hooks/manifests.yaml -------------------------------------------------------------------------------- /helmcharts/istio/base/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/helmcharts/istio/base/Chart.yaml -------------------------------------------------------------------------------- /helmcharts/istio/base/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/helmcharts/istio/base/README.md -------------------------------------------------------------------------------- /helmcharts/istio/base/crds/crd-all.gen.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/helmcharts/istio/base/crds/crd-all.gen.yaml -------------------------------------------------------------------------------- /helmcharts/istio/base/crds/crd-operator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/helmcharts/istio/base/crds/crd-operator.yaml -------------------------------------------------------------------------------- /helmcharts/istio/base/files/gen-istio-cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/helmcharts/istio/base/files/gen-istio-cluster.yaml -------------------------------------------------------------------------------- /helmcharts/istio/base/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/helmcharts/istio/base/kustomization.yaml -------------------------------------------------------------------------------- /helmcharts/istio/base/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/helmcharts/istio/base/templates/NOTES.txt -------------------------------------------------------------------------------- /helmcharts/istio/base/templates/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/helmcharts/istio/base/templates/clusterrole.yaml -------------------------------------------------------------------------------- /helmcharts/istio/base/templates/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/helmcharts/istio/base/templates/clusterrolebinding.yaml -------------------------------------------------------------------------------- /helmcharts/istio/base/templates/crds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/helmcharts/istio/base/templates/crds.yaml -------------------------------------------------------------------------------- /helmcharts/istio/base/templates/default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/helmcharts/istio/base/templates/default.yaml -------------------------------------------------------------------------------- /helmcharts/istio/base/templates/endpoints.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/helmcharts/istio/base/templates/endpoints.yaml -------------------------------------------------------------------------------- /helmcharts/istio/base/templates/reader-serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/helmcharts/istio/base/templates/reader-serviceaccount.yaml -------------------------------------------------------------------------------- /helmcharts/istio/base/templates/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/helmcharts/istio/base/templates/role.yaml -------------------------------------------------------------------------------- /helmcharts/istio/base/templates/rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/helmcharts/istio/base/templates/rolebinding.yaml -------------------------------------------------------------------------------- /helmcharts/istio/base/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/helmcharts/istio/base/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /helmcharts/istio/base/templates/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/helmcharts/istio/base/templates/services.yaml -------------------------------------------------------------------------------- /helmcharts/istio/base/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/helmcharts/istio/base/values.yaml -------------------------------------------------------------------------------- /helmcharts/istio/istiod/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/helmcharts/istio/istiod/Chart.yaml -------------------------------------------------------------------------------- /helmcharts/istio/istiod/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/helmcharts/istio/istiod/README.md -------------------------------------------------------------------------------- /helmcharts/istio/istiod/files/gateway-injection-template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/helmcharts/istio/istiod/files/gateway-injection-template.yaml -------------------------------------------------------------------------------- /helmcharts/istio/istiod/files/gen-istio.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/helmcharts/istio/istiod/files/gen-istio.yaml -------------------------------------------------------------------------------- /helmcharts/istio/istiod/files/grpc-agent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/helmcharts/istio/istiod/files/grpc-agent.yaml -------------------------------------------------------------------------------- /helmcharts/istio/istiod/files/grpc-simple.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/helmcharts/istio/istiod/files/grpc-simple.yaml -------------------------------------------------------------------------------- /helmcharts/istio/istiod/files/injection-template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/helmcharts/istio/istiod/files/injection-template.yaml -------------------------------------------------------------------------------- /helmcharts/istio/istiod/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/helmcharts/istio/istiod/kustomization.yaml -------------------------------------------------------------------------------- /helmcharts/istio/istiod/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/helmcharts/istio/istiod/templates/NOTES.txt -------------------------------------------------------------------------------- /helmcharts/istio/istiod/templates/autoscale.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/helmcharts/istio/istiod/templates/autoscale.yaml -------------------------------------------------------------------------------- /helmcharts/istio/istiod/templates/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/helmcharts/istio/istiod/templates/clusterrole.yaml -------------------------------------------------------------------------------- /helmcharts/istio/istiod/templates/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/helmcharts/istio/istiod/templates/clusterrolebinding.yaml -------------------------------------------------------------------------------- /helmcharts/istio/istiod/templates/configmap-jwks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/helmcharts/istio/istiod/templates/configmap-jwks.yaml -------------------------------------------------------------------------------- /helmcharts/istio/istiod/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/helmcharts/istio/istiod/templates/configmap.yaml -------------------------------------------------------------------------------- /helmcharts/istio/istiod/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/helmcharts/istio/istiod/templates/deployment.yaml -------------------------------------------------------------------------------- /helmcharts/istio/istiod/templates/istiod-injector-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/helmcharts/istio/istiod/templates/istiod-injector-configmap.yaml -------------------------------------------------------------------------------- /helmcharts/istio/istiod/templates/mutatingwebhook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/helmcharts/istio/istiod/templates/mutatingwebhook.yaml -------------------------------------------------------------------------------- /helmcharts/istio/istiod/templates/poddisruptionbudget.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/helmcharts/istio/istiod/templates/poddisruptionbudget.yaml -------------------------------------------------------------------------------- /helmcharts/istio/istiod/templates/reader-clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/helmcharts/istio/istiod/templates/reader-clusterrole.yaml -------------------------------------------------------------------------------- /helmcharts/istio/istiod/templates/reader-clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/helmcharts/istio/istiod/templates/reader-clusterrolebinding.yaml -------------------------------------------------------------------------------- /helmcharts/istio/istiod/templates/revision-tags.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/helmcharts/istio/istiod/templates/revision-tags.yaml -------------------------------------------------------------------------------- /helmcharts/istio/istiod/templates/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/helmcharts/istio/istiod/templates/role.yaml -------------------------------------------------------------------------------- /helmcharts/istio/istiod/templates/rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/helmcharts/istio/istiod/templates/rolebinding.yaml -------------------------------------------------------------------------------- /helmcharts/istio/istiod/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/helmcharts/istio/istiod/templates/service.yaml -------------------------------------------------------------------------------- /helmcharts/istio/istiod/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/helmcharts/istio/istiod/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /helmcharts/istio/istiod/templates/telemetryv2_1.11.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/helmcharts/istio/istiod/templates/telemetryv2_1.11.yaml -------------------------------------------------------------------------------- /helmcharts/istio/istiod/templates/telemetryv2_1.12.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/helmcharts/istio/istiod/templates/telemetryv2_1.12.yaml -------------------------------------------------------------------------------- /helmcharts/istio/istiod/templates/telemetryv2_1.13.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/helmcharts/istio/istiod/templates/telemetryv2_1.13.yaml -------------------------------------------------------------------------------- /helmcharts/istio/istiod/templates/telemetryv2_1.14.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/helmcharts/istio/istiod/templates/telemetryv2_1.14.yaml -------------------------------------------------------------------------------- /helmcharts/istio/istiod/templates/telemetryv2_1.15.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/helmcharts/istio/istiod/templates/telemetryv2_1.15.yaml -------------------------------------------------------------------------------- /helmcharts/istio/istiod/templates/validatingwebhookconfiguration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/helmcharts/istio/istiod/templates/validatingwebhookconfiguration.yaml -------------------------------------------------------------------------------- /helmcharts/istio/istiod/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/helmcharts/istio/istiod/values.yaml -------------------------------------------------------------------------------- /helmcharts/security-policy-charts/falco/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /helmcharts/security-policy-charts/falco/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/helmcharts/security-policy-charts/falco/Chart.yaml -------------------------------------------------------------------------------- /helmcharts/security-policy-charts/kyverno/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /helmcharts/security-policy-charts/kyverno/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/helmcharts/security-policy-charts/kyverno/Chart.yaml -------------------------------------------------------------------------------- /ingress-nginx/values.yaml: -------------------------------------------------------------------------------- 1 | controller: 2 | replicaCount: 2 -------------------------------------------------------------------------------- /jsonnet-guestbook-tla/guestbook-ui.jsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/jsonnet-guestbook-tla/guestbook-ui.jsonnet -------------------------------------------------------------------------------- /jsonnet-guestbook/guestbook-ui.jsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/jsonnet-guestbook/guestbook-ui.jsonnet -------------------------------------------------------------------------------- /jsonnet-guestbook/params.libsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/jsonnet-guestbook/params.libsonnet -------------------------------------------------------------------------------- /ksonnet-guestbook/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/ksonnet-guestbook/.gitignore -------------------------------------------------------------------------------- /ksonnet-guestbook/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/ksonnet-guestbook/app.yaml -------------------------------------------------------------------------------- /ksonnet-guestbook/components/guestbook-ui.jsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/ksonnet-guestbook/components/guestbook-ui.jsonnet -------------------------------------------------------------------------------- /ksonnet-guestbook/components/params.libsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/ksonnet-guestbook/components/params.libsonnet -------------------------------------------------------------------------------- /ksonnet-guestbook/environments/base.libsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/ksonnet-guestbook/environments/base.libsonnet -------------------------------------------------------------------------------- /ksonnet-guestbook/environments/default/globals.libsonnet: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /ksonnet-guestbook/environments/default/main.jsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/ksonnet-guestbook/environments/default/main.jsonnet -------------------------------------------------------------------------------- /ksonnet-guestbook/environments/default/params.libsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/ksonnet-guestbook/environments/default/params.libsonnet -------------------------------------------------------------------------------- /ksonnet-guestbook/environments/dev/globals.libsonnet: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /ksonnet-guestbook/environments/dev/main.jsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/ksonnet-guestbook/environments/dev/main.jsonnet -------------------------------------------------------------------------------- /ksonnet-guestbook/environments/dev/params.libsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/ksonnet-guestbook/environments/dev/params.libsonnet -------------------------------------------------------------------------------- /ksonnet-guestbook/environments/prod/globals.libsonnet: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /ksonnet-guestbook/environments/prod/main.jsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/ksonnet-guestbook/environments/prod/main.jsonnet -------------------------------------------------------------------------------- /ksonnet-guestbook/environments/prod/params.libsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/ksonnet-guestbook/environments/prod/params.libsonnet -------------------------------------------------------------------------------- /kustomize-guestbook/guestbook-ui-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/kustomize-guestbook/guestbook-ui-deployment.yaml -------------------------------------------------------------------------------- /kustomize-guestbook/guestbook-ui-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/kustomize-guestbook/guestbook-ui-svc.yaml -------------------------------------------------------------------------------- /kustomize-guestbook/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/kustomize-guestbook/kustomization.yaml -------------------------------------------------------------------------------- /plugins/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/plugins/README.md -------------------------------------------------------------------------------- /plugins/kasane/.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | Kasanefile.lock 3 | -------------------------------------------------------------------------------- /plugins/kasane/Kasanefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/plugins/kasane/Kasanefile -------------------------------------------------------------------------------- /plugins/kasane/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/plugins/kasane/README.md -------------------------------------------------------------------------------- /plugins/kasane/patch.jsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/plugins/kasane/patch.jsonnet -------------------------------------------------------------------------------- /plugins/kustomized-helm/.gitignore: -------------------------------------------------------------------------------- 1 | all.yaml 2 | charts 3 | requirements.lock 4 | -------------------------------------------------------------------------------- /plugins/kustomized-helm/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/plugins/kustomized-helm/Chart.yaml -------------------------------------------------------------------------------- /plugins/kustomized-helm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/plugins/kustomized-helm/README.md -------------------------------------------------------------------------------- /plugins/kustomized-helm/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/plugins/kustomized-helm/kustomization.yaml -------------------------------------------------------------------------------- /plugins/kustomized-helm/overlays/guestbook-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/plugins/kustomized-helm/overlays/guestbook-deployment.yaml -------------------------------------------------------------------------------- /pre-post-sync/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/pre-post-sync/kustomization.yaml -------------------------------------------------------------------------------- /pre-post-sync/post-sync-job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/pre-post-sync/post-sync-job.yaml -------------------------------------------------------------------------------- /pre-post-sync/pre-sync-job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/pre-post-sync/pre-sync-job.yaml -------------------------------------------------------------------------------- /sock-shop/base/carts-db-dep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/sock-shop/base/carts-db-dep.yaml -------------------------------------------------------------------------------- /sock-shop/base/carts-db-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/sock-shop/base/carts-db-svc.yaml -------------------------------------------------------------------------------- /sock-shop/base/carts-dep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/sock-shop/base/carts-dep.yaml -------------------------------------------------------------------------------- /sock-shop/base/catalogue-db-dep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/sock-shop/base/catalogue-db-dep.yaml -------------------------------------------------------------------------------- /sock-shop/base/catalogue-db-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/sock-shop/base/catalogue-db-svc.yaml -------------------------------------------------------------------------------- /sock-shop/base/catalogue-dep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/sock-shop/base/catalogue-dep.yaml -------------------------------------------------------------------------------- /sock-shop/base/catalogue-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/sock-shop/base/catalogue-svc.yaml -------------------------------------------------------------------------------- /sock-shop/base/front-end-dep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/sock-shop/base/front-end-dep.yaml -------------------------------------------------------------------------------- /sock-shop/base/front-end-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/sock-shop/base/front-end-svc.yaml -------------------------------------------------------------------------------- /sock-shop/base/orders-db-dep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/sock-shop/base/orders-db-dep.yaml -------------------------------------------------------------------------------- /sock-shop/base/orders-db-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/sock-shop/base/orders-db-svc.yaml -------------------------------------------------------------------------------- /sock-shop/base/orders-dep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/sock-shop/base/orders-dep.yaml -------------------------------------------------------------------------------- /sock-shop/base/orders-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/sock-shop/base/orders-svc.yaml -------------------------------------------------------------------------------- /sock-shop/base/payment-dep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/sock-shop/base/payment-dep.yaml -------------------------------------------------------------------------------- /sock-shop/base/payment-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/sock-shop/base/payment-svc.yaml -------------------------------------------------------------------------------- /sock-shop/base/queue-master-dep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/sock-shop/base/queue-master-dep.yaml -------------------------------------------------------------------------------- /sock-shop/base/queue-master-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/sock-shop/base/queue-master-svc.yaml -------------------------------------------------------------------------------- /sock-shop/base/rabbitmq-dep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/sock-shop/base/rabbitmq-dep.yaml -------------------------------------------------------------------------------- /sock-shop/base/rabbitmq-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/sock-shop/base/rabbitmq-svc.yaml -------------------------------------------------------------------------------- /sock-shop/base/session-db-dep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/sock-shop/base/session-db-dep.yaml -------------------------------------------------------------------------------- /sock-shop/base/session-db-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/sock-shop/base/session-db-svc.yaml -------------------------------------------------------------------------------- /sock-shop/base/shipping-dep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/sock-shop/base/shipping-dep.yaml -------------------------------------------------------------------------------- /sock-shop/base/shipping-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/sock-shop/base/shipping-svc.yaml -------------------------------------------------------------------------------- /sock-shop/base/user-db-dep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/sock-shop/base/user-db-dep.yaml -------------------------------------------------------------------------------- /sock-shop/base/user-db-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/sock-shop/base/user-db-svc.yaml -------------------------------------------------------------------------------- /sock-shop/base/user-dep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/sock-shop/base/user-dep.yaml -------------------------------------------------------------------------------- /sock-shop/base/user-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/sock-shop/base/user-svc.yaml -------------------------------------------------------------------------------- /sock-shop/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/sock-shop/kustomization.yaml -------------------------------------------------------------------------------- /sync-options/no-prune/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/sync-options/no-prune/deployment.yaml -------------------------------------------------------------------------------- /sync-options/no-prune/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/sync-options/no-prune/service.yaml -------------------------------------------------------------------------------- /sync-options/prune-last/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/sync-options/prune-last/deployment.yaml -------------------------------------------------------------------------------- /sync-options/prune-last/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/sync-options/prune-last/service.yaml -------------------------------------------------------------------------------- /sync-options/replace/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/sync-options/replace/deployment.yaml -------------------------------------------------------------------------------- /sync-options/replace/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/sync-options/replace/service.yaml -------------------------------------------------------------------------------- /sync-options/selective-sync/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/sync-options/selective-sync/deployment.yaml -------------------------------------------------------------------------------- /sync-options/selective-sync/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/sync-options/selective-sync/service.yaml -------------------------------------------------------------------------------- /sync-phases/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/sync-phases/kustomization.yaml -------------------------------------------------------------------------------- /sync-phases/plain-manifests/post-sync-job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/sync-phases/plain-manifests/post-sync-job.yaml -------------------------------------------------------------------------------- /sync-phases/plain-manifests/pre-sync-job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/sync-phases/plain-manifests/pre-sync-job.yaml -------------------------------------------------------------------------------- /sync-phases/plain-manifests/skip-job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/sync-phases/plain-manifests/skip-job.yaml -------------------------------------------------------------------------------- /sync-phases/plain-manifests/sync-job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/sync-phases/plain-manifests/sync-job.yaml -------------------------------------------------------------------------------- /sync-phases/post-sync-job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/sync-phases/post-sync-job.yaml -------------------------------------------------------------------------------- /sync-phases/pre-sync-job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/sync-phases/pre-sync-job.yaml -------------------------------------------------------------------------------- /sync-phases/skip-job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/sync-phases/skip-job.yaml -------------------------------------------------------------------------------- /sync-phases/sync-job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/sync-phases/sync-job.yaml -------------------------------------------------------------------------------- /sync-waves/manifests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/sync-waves/manifests.yaml -------------------------------------------------------------------------------- /sync-waves/plain-manifests/manifests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabusaa/argocd-example-apps/HEAD/sync-waves/plain-manifests/manifests.yaml --------------------------------------------------------------------------------