├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── charts └── podinfo │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── deployment.yaml │ ├── hpa.yaml │ ├── ingress.yaml │ ├── linkerd.yaml │ ├── service.yaml │ ├── serviceaccount.yaml │ └── tests │ │ ├── grpc.yaml │ │ ├── jwt.yaml │ │ └── service.yaml │ └── values.yaml ├── diagrams ├── flux-flagger.png ├── flux-helm-operator-registry.png ├── flux-helm-operator-sealed-secrets.png ├── flux-helm-operator.png ├── flux-istio-operator.png ├── flux-multi-tenancy.png └── flux-open-policy-agent-gatekeeper.png ├── hack ├── Dockerfile.ci └── ci-mock.sh ├── namespaces ├── adm.yaml ├── dev.yaml ├── prod.yaml └── stg.yaml └── releases ├── adm └── sealed-secrets.yaml ├── dev └── podinfo.yaml ├── prod └── podinfo.yaml └── stg └── podinfo.yaml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd/helm-operator-get-started/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd/helm-operator-get-started/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd/helm-operator-get-started/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd/helm-operator-get-started/HEAD/README.md -------------------------------------------------------------------------------- /charts/podinfo/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd/helm-operator-get-started/HEAD/charts/podinfo/.helmignore -------------------------------------------------------------------------------- /charts/podinfo/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd/helm-operator-get-started/HEAD/charts/podinfo/Chart.yaml -------------------------------------------------------------------------------- /charts/podinfo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd/helm-operator-get-started/HEAD/charts/podinfo/README.md -------------------------------------------------------------------------------- /charts/podinfo/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd/helm-operator-get-started/HEAD/charts/podinfo/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/podinfo/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd/helm-operator-get-started/HEAD/charts/podinfo/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/podinfo/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd/helm-operator-get-started/HEAD/charts/podinfo/templates/deployment.yaml -------------------------------------------------------------------------------- /charts/podinfo/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd/helm-operator-get-started/HEAD/charts/podinfo/templates/hpa.yaml -------------------------------------------------------------------------------- /charts/podinfo/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd/helm-operator-get-started/HEAD/charts/podinfo/templates/ingress.yaml -------------------------------------------------------------------------------- /charts/podinfo/templates/linkerd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd/helm-operator-get-started/HEAD/charts/podinfo/templates/linkerd.yaml -------------------------------------------------------------------------------- /charts/podinfo/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd/helm-operator-get-started/HEAD/charts/podinfo/templates/service.yaml -------------------------------------------------------------------------------- /charts/podinfo/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd/helm-operator-get-started/HEAD/charts/podinfo/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /charts/podinfo/templates/tests/grpc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd/helm-operator-get-started/HEAD/charts/podinfo/templates/tests/grpc.yaml -------------------------------------------------------------------------------- /charts/podinfo/templates/tests/jwt.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd/helm-operator-get-started/HEAD/charts/podinfo/templates/tests/jwt.yaml -------------------------------------------------------------------------------- /charts/podinfo/templates/tests/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd/helm-operator-get-started/HEAD/charts/podinfo/templates/tests/service.yaml -------------------------------------------------------------------------------- /charts/podinfo/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd/helm-operator-get-started/HEAD/charts/podinfo/values.yaml -------------------------------------------------------------------------------- /diagrams/flux-flagger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd/helm-operator-get-started/HEAD/diagrams/flux-flagger.png -------------------------------------------------------------------------------- /diagrams/flux-helm-operator-registry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd/helm-operator-get-started/HEAD/diagrams/flux-helm-operator-registry.png -------------------------------------------------------------------------------- /diagrams/flux-helm-operator-sealed-secrets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd/helm-operator-get-started/HEAD/diagrams/flux-helm-operator-sealed-secrets.png -------------------------------------------------------------------------------- /diagrams/flux-helm-operator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd/helm-operator-get-started/HEAD/diagrams/flux-helm-operator.png -------------------------------------------------------------------------------- /diagrams/flux-istio-operator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd/helm-operator-get-started/HEAD/diagrams/flux-istio-operator.png -------------------------------------------------------------------------------- /diagrams/flux-multi-tenancy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd/helm-operator-get-started/HEAD/diagrams/flux-multi-tenancy.png -------------------------------------------------------------------------------- /diagrams/flux-open-policy-agent-gatekeeper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd/helm-operator-get-started/HEAD/diagrams/flux-open-policy-agent-gatekeeper.png -------------------------------------------------------------------------------- /hack/Dockerfile.ci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd/helm-operator-get-started/HEAD/hack/Dockerfile.ci -------------------------------------------------------------------------------- /hack/ci-mock.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd/helm-operator-get-started/HEAD/hack/ci-mock.sh -------------------------------------------------------------------------------- /namespaces/adm.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | apiVersion: v1 3 | kind: Namespace 4 | metadata: 5 | name: adm 6 | -------------------------------------------------------------------------------- /namespaces/dev.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | apiVersion: v1 3 | kind: Namespace 4 | metadata: 5 | name: dev 6 | -------------------------------------------------------------------------------- /namespaces/prod.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | apiVersion: v1 3 | kind: Namespace 4 | metadata: 5 | name: prod 6 | -------------------------------------------------------------------------------- /namespaces/stg.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | apiVersion: v1 3 | kind: Namespace 4 | metadata: 5 | name: stg 6 | -------------------------------------------------------------------------------- /releases/adm/sealed-secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd/helm-operator-get-started/HEAD/releases/adm/sealed-secrets.yaml -------------------------------------------------------------------------------- /releases/dev/podinfo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd/helm-operator-get-started/HEAD/releases/dev/podinfo.yaml -------------------------------------------------------------------------------- /releases/prod/podinfo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd/helm-operator-get-started/HEAD/releases/prod/podinfo.yaml -------------------------------------------------------------------------------- /releases/stg/podinfo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluxcd/helm-operator-get-started/HEAD/releases/stg/podinfo.yaml --------------------------------------------------------------------------------