├── README.md ├── blue-green-app ├── rollout.yml ├── service-preview.yml └── service.yml ├── canary-app-automatic ├── analysis.yaml ├── ingress-route.yaml ├── rollout.yaml ├── service-preview.yaml ├── service.yaml └── traefik-service.yaml ├── canary-app-manual ├── ingress-route.yaml ├── rollout.yaml ├── service-preview.yaml ├── service.yaml └── traefik-service.yaml ├── declarative ├── manifests │ ├── deployment.yml │ └── service.yml ├── multiple-apps │ ├── demo-app1.yml │ ├── demo-app2.yml │ └── demo-app3.yml ├── parent-app │ └── my-parent-app.yml └── single-app │ └── my-application.yml ├── helm-apps ├── app-with-many-values.yaml ├── many-envs-chart │ ├── .helmignore │ ├── Chart.yaml │ ├── common-values.yaml │ ├── prod-values.yaml │ ├── staging-values.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── deployment.yaml │ │ ├── ingress.yaml │ │ ├── service.yaml │ │ └── serviceaccount.yaml │ └── values.yaml └── simple-chart │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── deployment.yaml │ ├── ingress.yaml │ ├── service.yaml │ └── serviceaccount.yaml │ └── values.yaml ├── kustomize-apps ├── base │ ├── configMap.yaml │ ├── deployment.yaml │ ├── kustomization.yaml │ └── service.yaml └── overlays │ ├── production │ ├── config-map.yaml │ ├── kustomization.yaml │ └── service.yaml │ └── staging │ ├── kustomization.yaml │ └── service.yaml ├── rollouts-controller-172 └── install.yaml ├── sealed-controller-28 ├── README.MD └── controller.yaml ├── secret-app ├── manifests │ ├── db-creds-encrypted.yaml │ ├── deployment.yml │ ├── paypal-cert-encrypted.yaml │ └── service.yml └── never-commit-to-git │ ├── decrypted │ ├── README.txt │ └── paypal.crt │ └── unsealed_secrets │ ├── db-creds.yml │ └── paypal-cert.yml ├── simple-app ├── deployment.yml └── service.yml ├── source-code-canary ├── Dockerfile ├── app.go ├── canary.yml ├── go.mod └── static │ ├── favicon.png │ ├── index.html │ └── style.css ├── source-code-kustomize ├── Dockerfile ├── pom.xml └── src │ └── main │ └── java │ └── com │ └── example │ └── springboot │ ├── Application.java │ └── HelloController.java ├── source-code-secrets ├── Dockerfile ├── codefresh.yml ├── go.mod ├── go.sum ├── settings.ini └── simple-web-server.go ├── source-code ├── Dockerfile ├── README.md ├── codefresh.yml ├── go.mod └── trivial-web-server.go └── sync-strategies ├── deployment.yml └── service.yml /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefresh-contrib/gitops-certification-examples/HEAD/README.md -------------------------------------------------------------------------------- /blue-green-app/rollout.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefresh-contrib/gitops-certification-examples/HEAD/blue-green-app/rollout.yml -------------------------------------------------------------------------------- /blue-green-app/service-preview.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefresh-contrib/gitops-certification-examples/HEAD/blue-green-app/service-preview.yml -------------------------------------------------------------------------------- /blue-green-app/service.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefresh-contrib/gitops-certification-examples/HEAD/blue-green-app/service.yml -------------------------------------------------------------------------------- /canary-app-automatic/analysis.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefresh-contrib/gitops-certification-examples/HEAD/canary-app-automatic/analysis.yaml -------------------------------------------------------------------------------- /canary-app-automatic/ingress-route.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefresh-contrib/gitops-certification-examples/HEAD/canary-app-automatic/ingress-route.yaml -------------------------------------------------------------------------------- /canary-app-automatic/rollout.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefresh-contrib/gitops-certification-examples/HEAD/canary-app-automatic/rollout.yaml -------------------------------------------------------------------------------- /canary-app-automatic/service-preview.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefresh-contrib/gitops-certification-examples/HEAD/canary-app-automatic/service-preview.yaml -------------------------------------------------------------------------------- /canary-app-automatic/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefresh-contrib/gitops-certification-examples/HEAD/canary-app-automatic/service.yaml -------------------------------------------------------------------------------- /canary-app-automatic/traefik-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefresh-contrib/gitops-certification-examples/HEAD/canary-app-automatic/traefik-service.yaml -------------------------------------------------------------------------------- /canary-app-manual/ingress-route.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefresh-contrib/gitops-certification-examples/HEAD/canary-app-manual/ingress-route.yaml -------------------------------------------------------------------------------- /canary-app-manual/rollout.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefresh-contrib/gitops-certification-examples/HEAD/canary-app-manual/rollout.yaml -------------------------------------------------------------------------------- /canary-app-manual/service-preview.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefresh-contrib/gitops-certification-examples/HEAD/canary-app-manual/service-preview.yaml -------------------------------------------------------------------------------- /canary-app-manual/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefresh-contrib/gitops-certification-examples/HEAD/canary-app-manual/service.yaml -------------------------------------------------------------------------------- /canary-app-manual/traefik-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefresh-contrib/gitops-certification-examples/HEAD/canary-app-manual/traefik-service.yaml -------------------------------------------------------------------------------- /declarative/manifests/deployment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefresh-contrib/gitops-certification-examples/HEAD/declarative/manifests/deployment.yml -------------------------------------------------------------------------------- /declarative/manifests/service.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefresh-contrib/gitops-certification-examples/HEAD/declarative/manifests/service.yml -------------------------------------------------------------------------------- /declarative/multiple-apps/demo-app1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefresh-contrib/gitops-certification-examples/HEAD/declarative/multiple-apps/demo-app1.yml -------------------------------------------------------------------------------- /declarative/multiple-apps/demo-app2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefresh-contrib/gitops-certification-examples/HEAD/declarative/multiple-apps/demo-app2.yml -------------------------------------------------------------------------------- /declarative/multiple-apps/demo-app3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefresh-contrib/gitops-certification-examples/HEAD/declarative/multiple-apps/demo-app3.yml -------------------------------------------------------------------------------- /declarative/parent-app/my-parent-app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefresh-contrib/gitops-certification-examples/HEAD/declarative/parent-app/my-parent-app.yml -------------------------------------------------------------------------------- /declarative/single-app/my-application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefresh-contrib/gitops-certification-examples/HEAD/declarative/single-app/my-application.yml -------------------------------------------------------------------------------- /helm-apps/app-with-many-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefresh-contrib/gitops-certification-examples/HEAD/helm-apps/app-with-many-values.yaml -------------------------------------------------------------------------------- /helm-apps/many-envs-chart/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefresh-contrib/gitops-certification-examples/HEAD/helm-apps/many-envs-chart/.helmignore -------------------------------------------------------------------------------- /helm-apps/many-envs-chart/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefresh-contrib/gitops-certification-examples/HEAD/helm-apps/many-envs-chart/Chart.yaml -------------------------------------------------------------------------------- /helm-apps/many-envs-chart/common-values.yaml: -------------------------------------------------------------------------------- 1 | replicaCount: 2 2 | image: 3 | tag: v2.0 4 | -------------------------------------------------------------------------------- /helm-apps/many-envs-chart/prod-values.yaml: -------------------------------------------------------------------------------- 1 | replicaCount: 3 2 | -------------------------------------------------------------------------------- /helm-apps/many-envs-chart/staging-values.yaml: -------------------------------------------------------------------------------- 1 | replicaCount: 1 2 | image: 3 | tag: v2.0 4 | -------------------------------------------------------------------------------- /helm-apps/many-envs-chart/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefresh-contrib/gitops-certification-examples/HEAD/helm-apps/many-envs-chart/templates/NOTES.txt -------------------------------------------------------------------------------- /helm-apps/many-envs-chart/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefresh-contrib/gitops-certification-examples/HEAD/helm-apps/many-envs-chart/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm-apps/many-envs-chart/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefresh-contrib/gitops-certification-examples/HEAD/helm-apps/many-envs-chart/templates/deployment.yaml -------------------------------------------------------------------------------- /helm-apps/many-envs-chart/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefresh-contrib/gitops-certification-examples/HEAD/helm-apps/many-envs-chart/templates/ingress.yaml -------------------------------------------------------------------------------- /helm-apps/many-envs-chart/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefresh-contrib/gitops-certification-examples/HEAD/helm-apps/many-envs-chart/templates/service.yaml -------------------------------------------------------------------------------- /helm-apps/many-envs-chart/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefresh-contrib/gitops-certification-examples/HEAD/helm-apps/many-envs-chart/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /helm-apps/many-envs-chart/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefresh-contrib/gitops-certification-examples/HEAD/helm-apps/many-envs-chart/values.yaml -------------------------------------------------------------------------------- /helm-apps/simple-chart/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefresh-contrib/gitops-certification-examples/HEAD/helm-apps/simple-chart/.helmignore -------------------------------------------------------------------------------- /helm-apps/simple-chart/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefresh-contrib/gitops-certification-examples/HEAD/helm-apps/simple-chart/Chart.yaml -------------------------------------------------------------------------------- /helm-apps/simple-chart/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefresh-contrib/gitops-certification-examples/HEAD/helm-apps/simple-chart/templates/NOTES.txt -------------------------------------------------------------------------------- /helm-apps/simple-chart/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefresh-contrib/gitops-certification-examples/HEAD/helm-apps/simple-chart/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm-apps/simple-chart/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefresh-contrib/gitops-certification-examples/HEAD/helm-apps/simple-chart/templates/deployment.yaml -------------------------------------------------------------------------------- /helm-apps/simple-chart/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefresh-contrib/gitops-certification-examples/HEAD/helm-apps/simple-chart/templates/ingress.yaml -------------------------------------------------------------------------------- /helm-apps/simple-chart/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefresh-contrib/gitops-certification-examples/HEAD/helm-apps/simple-chart/templates/service.yaml -------------------------------------------------------------------------------- /helm-apps/simple-chart/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefresh-contrib/gitops-certification-examples/HEAD/helm-apps/simple-chart/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /helm-apps/simple-chart/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefresh-contrib/gitops-certification-examples/HEAD/helm-apps/simple-chart/values.yaml -------------------------------------------------------------------------------- /kustomize-apps/base/configMap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefresh-contrib/gitops-certification-examples/HEAD/kustomize-apps/base/configMap.yaml -------------------------------------------------------------------------------- /kustomize-apps/base/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefresh-contrib/gitops-certification-examples/HEAD/kustomize-apps/base/deployment.yaml -------------------------------------------------------------------------------- /kustomize-apps/base/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefresh-contrib/gitops-certification-examples/HEAD/kustomize-apps/base/kustomization.yaml -------------------------------------------------------------------------------- /kustomize-apps/base/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefresh-contrib/gitops-certification-examples/HEAD/kustomize-apps/base/service.yaml -------------------------------------------------------------------------------- /kustomize-apps/overlays/production/config-map.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefresh-contrib/gitops-certification-examples/HEAD/kustomize-apps/overlays/production/config-map.yaml -------------------------------------------------------------------------------- /kustomize-apps/overlays/production/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefresh-contrib/gitops-certification-examples/HEAD/kustomize-apps/overlays/production/kustomization.yaml -------------------------------------------------------------------------------- /kustomize-apps/overlays/production/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefresh-contrib/gitops-certification-examples/HEAD/kustomize-apps/overlays/production/service.yaml -------------------------------------------------------------------------------- /kustomize-apps/overlays/staging/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefresh-contrib/gitops-certification-examples/HEAD/kustomize-apps/overlays/staging/kustomization.yaml -------------------------------------------------------------------------------- /kustomize-apps/overlays/staging/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefresh-contrib/gitops-certification-examples/HEAD/kustomize-apps/overlays/staging/service.yaml -------------------------------------------------------------------------------- /rollouts-controller-172/install.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefresh-contrib/gitops-certification-examples/HEAD/rollouts-controller-172/install.yaml -------------------------------------------------------------------------------- /sealed-controller-28/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefresh-contrib/gitops-certification-examples/HEAD/sealed-controller-28/README.MD -------------------------------------------------------------------------------- /sealed-controller-28/controller.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefresh-contrib/gitops-certification-examples/HEAD/sealed-controller-28/controller.yaml -------------------------------------------------------------------------------- /secret-app/manifests/db-creds-encrypted.yaml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /secret-app/manifests/deployment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefresh-contrib/gitops-certification-examples/HEAD/secret-app/manifests/deployment.yml -------------------------------------------------------------------------------- /secret-app/manifests/paypal-cert-encrypted.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /secret-app/manifests/service.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefresh-contrib/gitops-certification-examples/HEAD/secret-app/manifests/service.yml -------------------------------------------------------------------------------- /secret-app/never-commit-to-git/decrypted/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefresh-contrib/gitops-certification-examples/HEAD/secret-app/never-commit-to-git/decrypted/README.txt -------------------------------------------------------------------------------- /secret-app/never-commit-to-git/decrypted/paypal.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefresh-contrib/gitops-certification-examples/HEAD/secret-app/never-commit-to-git/decrypted/paypal.crt -------------------------------------------------------------------------------- /secret-app/never-commit-to-git/unsealed_secrets/db-creds.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefresh-contrib/gitops-certification-examples/HEAD/secret-app/never-commit-to-git/unsealed_secrets/db-creds.yml -------------------------------------------------------------------------------- /secret-app/never-commit-to-git/unsealed_secrets/paypal-cert.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefresh-contrib/gitops-certification-examples/HEAD/secret-app/never-commit-to-git/unsealed_secrets/paypal-cert.yml -------------------------------------------------------------------------------- /simple-app/deployment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefresh-contrib/gitops-certification-examples/HEAD/simple-app/deployment.yml -------------------------------------------------------------------------------- /simple-app/service.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefresh-contrib/gitops-certification-examples/HEAD/simple-app/service.yml -------------------------------------------------------------------------------- /source-code-canary/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefresh-contrib/gitops-certification-examples/HEAD/source-code-canary/Dockerfile -------------------------------------------------------------------------------- /source-code-canary/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefresh-contrib/gitops-certification-examples/HEAD/source-code-canary/app.go -------------------------------------------------------------------------------- /source-code-canary/canary.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefresh-contrib/gitops-certification-examples/HEAD/source-code-canary/canary.yml -------------------------------------------------------------------------------- /source-code-canary/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefresh-contrib/gitops-certification-examples/HEAD/source-code-canary/go.mod -------------------------------------------------------------------------------- /source-code-canary/static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefresh-contrib/gitops-certification-examples/HEAD/source-code-canary/static/favicon.png -------------------------------------------------------------------------------- /source-code-canary/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefresh-contrib/gitops-certification-examples/HEAD/source-code-canary/static/index.html -------------------------------------------------------------------------------- /source-code-canary/static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefresh-contrib/gitops-certification-examples/HEAD/source-code-canary/static/style.css -------------------------------------------------------------------------------- /source-code-kustomize/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefresh-contrib/gitops-certification-examples/HEAD/source-code-kustomize/Dockerfile -------------------------------------------------------------------------------- /source-code-kustomize/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefresh-contrib/gitops-certification-examples/HEAD/source-code-kustomize/pom.xml -------------------------------------------------------------------------------- /source-code-kustomize/src/main/java/com/example/springboot/Application.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefresh-contrib/gitops-certification-examples/HEAD/source-code-kustomize/src/main/java/com/example/springboot/Application.java -------------------------------------------------------------------------------- /source-code-kustomize/src/main/java/com/example/springboot/HelloController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefresh-contrib/gitops-certification-examples/HEAD/source-code-kustomize/src/main/java/com/example/springboot/HelloController.java -------------------------------------------------------------------------------- /source-code-secrets/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefresh-contrib/gitops-certification-examples/HEAD/source-code-secrets/Dockerfile -------------------------------------------------------------------------------- /source-code-secrets/codefresh.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefresh-contrib/gitops-certification-examples/HEAD/source-code-secrets/codefresh.yml -------------------------------------------------------------------------------- /source-code-secrets/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefresh-contrib/gitops-certification-examples/HEAD/source-code-secrets/go.mod -------------------------------------------------------------------------------- /source-code-secrets/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefresh-contrib/gitops-certification-examples/HEAD/source-code-secrets/go.sum -------------------------------------------------------------------------------- /source-code-secrets/settings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefresh-contrib/gitops-certification-examples/HEAD/source-code-secrets/settings.ini -------------------------------------------------------------------------------- /source-code-secrets/simple-web-server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefresh-contrib/gitops-certification-examples/HEAD/source-code-secrets/simple-web-server.go -------------------------------------------------------------------------------- /source-code/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefresh-contrib/gitops-certification-examples/HEAD/source-code/Dockerfile -------------------------------------------------------------------------------- /source-code/README.md: -------------------------------------------------------------------------------- 1 | A sample GO web application with Dockerfile 2 | 3 | -------------------------------------------------------------------------------- /source-code/codefresh.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefresh-contrib/gitops-certification-examples/HEAD/source-code/codefresh.yml -------------------------------------------------------------------------------- /source-code/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefresh-contrib/gitops-certification-examples/HEAD/source-code/go.mod -------------------------------------------------------------------------------- /source-code/trivial-web-server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefresh-contrib/gitops-certification-examples/HEAD/source-code/trivial-web-server.go -------------------------------------------------------------------------------- /sync-strategies/deployment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefresh-contrib/gitops-certification-examples/HEAD/sync-strategies/deployment.yml -------------------------------------------------------------------------------- /sync-strategies/service.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefresh-contrib/gitops-certification-examples/HEAD/sync-strategies/service.yml --------------------------------------------------------------------------------