├── README.md ├── chapter-02 ├── Dockerfile ├── Makefile ├── controller.sh ├── declarative-deployment.yaml ├── deployment.yaml ├── gitops-ci.sh ├── gitops-cronjob.yaml ├── gitops-resources.yaml ├── imperative-deployment.sh ├── nginx-pod.yaml └── sample.yaml ├── chapter-03 ├── guestbook │ ├── frontend-deployment.yaml │ ├── frontend-service.yaml │ ├── redis-master-deployment.yaml │ ├── redis-master-service.yaml │ ├── redis-slave-deployment.yaml │ └── redis-slave-service.yaml ├── helm │ ├── template │ │ └── guestbook.yaml │ └── values-prod.yaml ├── jsonnet │ ├── advanced.jsonnet │ ├── basic.jsonnet │ └── variables.jsonnet ├── kustomize │ ├── base │ │ ├── deployment.yaml │ │ └── kustomization.yaml │ └── envs │ │ ├── prod │ │ └── kustomization.yaml │ │ └── qa │ │ ├── debug.yaml │ │ └── kustomization.yaml └── networkisolation │ ├── block-other-namespace.yaml │ ├── curlpod.yaml │ └── web.yaml ├── chapter-04 ├── DeploymentWait.sh ├── exercise4.10 │ └── guestbook.yaml ├── exercise4.4 │ └── guestbook.yaml ├── exercise4.6 │ └── frontend-deployment.yaml └── exercise4.9 │ └── guestbook.yaml ├── chapter-05 ├── tutorial5.1.1 │ └── replicaSet.yaml ├── tutorial5.1.2 │ ├── deployment.yaml │ └── deployment2.yaml ├── tutorial5.2.1 │ ├── blue_deployment.yaml │ ├── blue_ingress.yaml │ ├── green_deployment.yaml │ └── green_ingress.yaml ├── tutorial5.2.2 │ ├── bluegreen_rollout.yaml │ └── ingress.yaml ├── tutorial5.3.1 │ ├── blue_deployment.yaml │ ├── blue_ingress.yaml │ ├── canary_ingress.yaml │ └── green_deployment.yaml ├── tutorial5.3.2 │ ├── canary_rollout.yaml │ └── ingress.yaml └── tutorial5.4.1 │ ├── analysis-templates.yaml │ ├── ingress.yaml │ └── rollout-with-analysis.yaml ├── chapter-06 ├── rbac.yaml ├── role-binding.yaml ├── role.yaml └── updated-rbac.yaml ├── chapter-07 ├── Dockerfile-with-secret ├── example-secret.yaml ├── kustomize-secret-plugin │ ├── config │ │ ├── kustomization.yaml │ │ └── my-password.yaml │ └── plugin │ │ └── gitopsbook │ │ └── secretretriever │ │ └── SecretRetriever ├── my-clusterwide-sealed-password.yaml ├── my-password.yaml ├── my-sealed-password.yaml ├── secret-environment-variable.yaml ├── secret-volume.yaml ├── secret.yaml ├── vault-agent-inject-annotations.yaml └── vault-startup.sh ├── chapter-08 ├── bigpod.yaml ├── hotrod │ ├── README.md │ ├── hotrod-app-jaeger.yaml │ └── hotrod-app.yaml └── jaeger │ ├── README.md │ └── jaeger-all-in-one.yaml ├── chapter-09 ├── argocd-cm.yaml ├── argocd-rbac-cm.yaml ├── argocd-server.yaml ├── kustomization.yaml ├── pre-sync.yaml └── sample-app.yaml ├── chapter-10 ├── argocd-cm.yaml ├── argocd-rbac-cm.yaml └── pre-sync-hook.yaml └── chapter-11 ├── .flux.yaml ├── flux-deployment-patch.yaml └── kustomization.yaml /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitopsbook/resources/HEAD/README.md -------------------------------------------------------------------------------- /chapter-02/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitopsbook/resources/HEAD/chapter-02/Dockerfile -------------------------------------------------------------------------------- /chapter-02/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitopsbook/resources/HEAD/chapter-02/Makefile -------------------------------------------------------------------------------- /chapter-02/controller.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitopsbook/resources/HEAD/chapter-02/controller.sh -------------------------------------------------------------------------------- /chapter-02/declarative-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitopsbook/resources/HEAD/chapter-02/declarative-deployment.yaml -------------------------------------------------------------------------------- /chapter-02/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitopsbook/resources/HEAD/chapter-02/deployment.yaml -------------------------------------------------------------------------------- /chapter-02/gitops-ci.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitopsbook/resources/HEAD/chapter-02/gitops-ci.sh -------------------------------------------------------------------------------- /chapter-02/gitops-cronjob.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitopsbook/resources/HEAD/chapter-02/gitops-cronjob.yaml -------------------------------------------------------------------------------- /chapter-02/gitops-resources.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitopsbook/resources/HEAD/chapter-02/gitops-resources.yaml -------------------------------------------------------------------------------- /chapter-02/imperative-deployment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitopsbook/resources/HEAD/chapter-02/imperative-deployment.sh -------------------------------------------------------------------------------- /chapter-02/nginx-pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitopsbook/resources/HEAD/chapter-02/nginx-pod.yaml -------------------------------------------------------------------------------- /chapter-02/sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitopsbook/resources/HEAD/chapter-02/sample.yaml -------------------------------------------------------------------------------- /chapter-03/guestbook/frontend-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitopsbook/resources/HEAD/chapter-03/guestbook/frontend-deployment.yaml -------------------------------------------------------------------------------- /chapter-03/guestbook/frontend-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitopsbook/resources/HEAD/chapter-03/guestbook/frontend-service.yaml -------------------------------------------------------------------------------- /chapter-03/guestbook/redis-master-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitopsbook/resources/HEAD/chapter-03/guestbook/redis-master-deployment.yaml -------------------------------------------------------------------------------- /chapter-03/guestbook/redis-master-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitopsbook/resources/HEAD/chapter-03/guestbook/redis-master-service.yaml -------------------------------------------------------------------------------- /chapter-03/guestbook/redis-slave-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitopsbook/resources/HEAD/chapter-03/guestbook/redis-slave-deployment.yaml -------------------------------------------------------------------------------- /chapter-03/guestbook/redis-slave-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitopsbook/resources/HEAD/chapter-03/guestbook/redis-slave-service.yaml -------------------------------------------------------------------------------- /chapter-03/helm/template/guestbook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitopsbook/resources/HEAD/chapter-03/helm/template/guestbook.yaml -------------------------------------------------------------------------------- /chapter-03/helm/values-prod.yaml: -------------------------------------------------------------------------------- 1 | image: 2 | repository: acme.com/guestbook 3 | tag: v1.0.0 4 | 5 | -------------------------------------------------------------------------------- /chapter-03/jsonnet/advanced.jsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitopsbook/resources/HEAD/chapter-03/jsonnet/advanced.jsonnet -------------------------------------------------------------------------------- /chapter-03/jsonnet/basic.jsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitopsbook/resources/HEAD/chapter-03/jsonnet/basic.jsonnet -------------------------------------------------------------------------------- /chapter-03/jsonnet/variables.jsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitopsbook/resources/HEAD/chapter-03/jsonnet/variables.jsonnet -------------------------------------------------------------------------------- /chapter-03/kustomize/base/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitopsbook/resources/HEAD/chapter-03/kustomize/base/deployment.yaml -------------------------------------------------------------------------------- /chapter-03/kustomize/base/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitopsbook/resources/HEAD/chapter-03/kustomize/base/kustomization.yaml -------------------------------------------------------------------------------- /chapter-03/kustomize/envs/prod/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitopsbook/resources/HEAD/chapter-03/kustomize/envs/prod/kustomization.yaml -------------------------------------------------------------------------------- /chapter-03/kustomize/envs/qa/debug.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitopsbook/resources/HEAD/chapter-03/kustomize/envs/qa/debug.yaml -------------------------------------------------------------------------------- /chapter-03/kustomize/envs/qa/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitopsbook/resources/HEAD/chapter-03/kustomize/envs/qa/kustomization.yaml -------------------------------------------------------------------------------- /chapter-03/networkisolation/block-other-namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitopsbook/resources/HEAD/chapter-03/networkisolation/block-other-namespace.yaml -------------------------------------------------------------------------------- /chapter-03/networkisolation/curlpod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitopsbook/resources/HEAD/chapter-03/networkisolation/curlpod.yaml -------------------------------------------------------------------------------- /chapter-03/networkisolation/web.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitopsbook/resources/HEAD/chapter-03/networkisolation/web.yaml -------------------------------------------------------------------------------- /chapter-04/DeploymentWait.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitopsbook/resources/HEAD/chapter-04/DeploymentWait.sh -------------------------------------------------------------------------------- /chapter-04/exercise4.10/guestbook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitopsbook/resources/HEAD/chapter-04/exercise4.10/guestbook.yaml -------------------------------------------------------------------------------- /chapter-04/exercise4.4/guestbook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitopsbook/resources/HEAD/chapter-04/exercise4.4/guestbook.yaml -------------------------------------------------------------------------------- /chapter-04/exercise4.6/frontend-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitopsbook/resources/HEAD/chapter-04/exercise4.6/frontend-deployment.yaml -------------------------------------------------------------------------------- /chapter-04/exercise4.9/guestbook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitopsbook/resources/HEAD/chapter-04/exercise4.9/guestbook.yaml -------------------------------------------------------------------------------- /chapter-05/tutorial5.1.1/replicaSet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitopsbook/resources/HEAD/chapter-05/tutorial5.1.1/replicaSet.yaml -------------------------------------------------------------------------------- /chapter-05/tutorial5.1.2/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitopsbook/resources/HEAD/chapter-05/tutorial5.1.2/deployment.yaml -------------------------------------------------------------------------------- /chapter-05/tutorial5.1.2/deployment2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitopsbook/resources/HEAD/chapter-05/tutorial5.1.2/deployment2.yaml -------------------------------------------------------------------------------- /chapter-05/tutorial5.2.1/blue_deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitopsbook/resources/HEAD/chapter-05/tutorial5.2.1/blue_deployment.yaml -------------------------------------------------------------------------------- /chapter-05/tutorial5.2.1/blue_ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitopsbook/resources/HEAD/chapter-05/tutorial5.2.1/blue_ingress.yaml -------------------------------------------------------------------------------- /chapter-05/tutorial5.2.1/green_deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitopsbook/resources/HEAD/chapter-05/tutorial5.2.1/green_deployment.yaml -------------------------------------------------------------------------------- /chapter-05/tutorial5.2.1/green_ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitopsbook/resources/HEAD/chapter-05/tutorial5.2.1/green_ingress.yaml -------------------------------------------------------------------------------- /chapter-05/tutorial5.2.2/bluegreen_rollout.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitopsbook/resources/HEAD/chapter-05/tutorial5.2.2/bluegreen_rollout.yaml -------------------------------------------------------------------------------- /chapter-05/tutorial5.2.2/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitopsbook/resources/HEAD/chapter-05/tutorial5.2.2/ingress.yaml -------------------------------------------------------------------------------- /chapter-05/tutorial5.3.1/blue_deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitopsbook/resources/HEAD/chapter-05/tutorial5.3.1/blue_deployment.yaml -------------------------------------------------------------------------------- /chapter-05/tutorial5.3.1/blue_ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitopsbook/resources/HEAD/chapter-05/tutorial5.3.1/blue_ingress.yaml -------------------------------------------------------------------------------- /chapter-05/tutorial5.3.1/canary_ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitopsbook/resources/HEAD/chapter-05/tutorial5.3.1/canary_ingress.yaml -------------------------------------------------------------------------------- /chapter-05/tutorial5.3.1/green_deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitopsbook/resources/HEAD/chapter-05/tutorial5.3.1/green_deployment.yaml -------------------------------------------------------------------------------- /chapter-05/tutorial5.3.2/canary_rollout.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitopsbook/resources/HEAD/chapter-05/tutorial5.3.2/canary_rollout.yaml -------------------------------------------------------------------------------- /chapter-05/tutorial5.3.2/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitopsbook/resources/HEAD/chapter-05/tutorial5.3.2/ingress.yaml -------------------------------------------------------------------------------- /chapter-05/tutorial5.4.1/analysis-templates.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitopsbook/resources/HEAD/chapter-05/tutorial5.4.1/analysis-templates.yaml -------------------------------------------------------------------------------- /chapter-05/tutorial5.4.1/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitopsbook/resources/HEAD/chapter-05/tutorial5.4.1/ingress.yaml -------------------------------------------------------------------------------- /chapter-05/tutorial5.4.1/rollout-with-analysis.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitopsbook/resources/HEAD/chapter-05/tutorial5.4.1/rollout-with-analysis.yaml -------------------------------------------------------------------------------- /chapter-06/rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitopsbook/resources/HEAD/chapter-06/rbac.yaml -------------------------------------------------------------------------------- /chapter-06/role-binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitopsbook/resources/HEAD/chapter-06/role-binding.yaml -------------------------------------------------------------------------------- /chapter-06/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitopsbook/resources/HEAD/chapter-06/role.yaml -------------------------------------------------------------------------------- /chapter-06/updated-rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitopsbook/resources/HEAD/chapter-06/updated-rbac.yaml -------------------------------------------------------------------------------- /chapter-07/Dockerfile-with-secret: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitopsbook/resources/HEAD/chapter-07/Dockerfile-with-secret -------------------------------------------------------------------------------- /chapter-07/example-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitopsbook/resources/HEAD/chapter-07/example-secret.yaml -------------------------------------------------------------------------------- /chapter-07/kustomize-secret-plugin/config/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitopsbook/resources/HEAD/chapter-07/kustomize-secret-plugin/config/kustomization.yaml -------------------------------------------------------------------------------- /chapter-07/kustomize-secret-plugin/config/my-password.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitopsbook/resources/HEAD/chapter-07/kustomize-secret-plugin/config/my-password.yaml -------------------------------------------------------------------------------- /chapter-07/kustomize-secret-plugin/plugin/gitopsbook/secretretriever/SecretRetriever: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitopsbook/resources/HEAD/chapter-07/kustomize-secret-plugin/plugin/gitopsbook/secretretriever/SecretRetriever -------------------------------------------------------------------------------- /chapter-07/my-clusterwide-sealed-password.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitopsbook/resources/HEAD/chapter-07/my-clusterwide-sealed-password.yaml -------------------------------------------------------------------------------- /chapter-07/my-password.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitopsbook/resources/HEAD/chapter-07/my-password.yaml -------------------------------------------------------------------------------- /chapter-07/my-sealed-password.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitopsbook/resources/HEAD/chapter-07/my-sealed-password.yaml -------------------------------------------------------------------------------- /chapter-07/secret-environment-variable.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitopsbook/resources/HEAD/chapter-07/secret-environment-variable.yaml -------------------------------------------------------------------------------- /chapter-07/secret-volume.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitopsbook/resources/HEAD/chapter-07/secret-volume.yaml -------------------------------------------------------------------------------- /chapter-07/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitopsbook/resources/HEAD/chapter-07/secret.yaml -------------------------------------------------------------------------------- /chapter-07/vault-agent-inject-annotations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitopsbook/resources/HEAD/chapter-07/vault-agent-inject-annotations.yaml -------------------------------------------------------------------------------- /chapter-07/vault-startup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitopsbook/resources/HEAD/chapter-07/vault-startup.sh -------------------------------------------------------------------------------- /chapter-08/bigpod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitopsbook/resources/HEAD/chapter-08/bigpod.yaml -------------------------------------------------------------------------------- /chapter-08/hotrod/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitopsbook/resources/HEAD/chapter-08/hotrod/README.md -------------------------------------------------------------------------------- /chapter-08/hotrod/hotrod-app-jaeger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitopsbook/resources/HEAD/chapter-08/hotrod/hotrod-app-jaeger.yaml -------------------------------------------------------------------------------- /chapter-08/hotrod/hotrod-app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitopsbook/resources/HEAD/chapter-08/hotrod/hotrod-app.yaml -------------------------------------------------------------------------------- /chapter-08/jaeger/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitopsbook/resources/HEAD/chapter-08/jaeger/README.md -------------------------------------------------------------------------------- /chapter-08/jaeger/jaeger-all-in-one.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitopsbook/resources/HEAD/chapter-08/jaeger/jaeger-all-in-one.yaml -------------------------------------------------------------------------------- /chapter-09/argocd-cm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitopsbook/resources/HEAD/chapter-09/argocd-cm.yaml -------------------------------------------------------------------------------- /chapter-09/argocd-rbac-cm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitopsbook/resources/HEAD/chapter-09/argocd-rbac-cm.yaml -------------------------------------------------------------------------------- /chapter-09/argocd-server.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitopsbook/resources/HEAD/chapter-09/argocd-server.yaml -------------------------------------------------------------------------------- /chapter-09/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitopsbook/resources/HEAD/chapter-09/kustomization.yaml -------------------------------------------------------------------------------- /chapter-09/pre-sync.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitopsbook/resources/HEAD/chapter-09/pre-sync.yaml -------------------------------------------------------------------------------- /chapter-09/sample-app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitopsbook/resources/HEAD/chapter-09/sample-app.yaml -------------------------------------------------------------------------------- /chapter-10/argocd-cm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitopsbook/resources/HEAD/chapter-10/argocd-cm.yaml -------------------------------------------------------------------------------- /chapter-10/argocd-rbac-cm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitopsbook/resources/HEAD/chapter-10/argocd-rbac-cm.yaml -------------------------------------------------------------------------------- /chapter-10/pre-sync-hook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitopsbook/resources/HEAD/chapter-10/pre-sync-hook.yaml -------------------------------------------------------------------------------- /chapter-11/.flux.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitopsbook/resources/HEAD/chapter-11/.flux.yaml -------------------------------------------------------------------------------- /chapter-11/flux-deployment-patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitopsbook/resources/HEAD/chapter-11/flux-deployment-patch.yaml -------------------------------------------------------------------------------- /chapter-11/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitopsbook/resources/HEAD/chapter-11/kustomization.yaml --------------------------------------------------------------------------------