├── .circleci ├── config.yml ├── ct.yaml ├── install_charts.sh ├── install_tools.sh └── release.sh ├── .github └── workflows │ └── inactive.yml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── haproxy ├── .helmignore ├── Chart.yaml ├── README.md ├── chart-icon.png ├── ci │ ├── daemonset-basic-values.yaml │ ├── daemonset-hostnet-values.yaml │ ├── daemonset-ingress-values.yaml │ ├── daemonset-ipfamily-values.yaml │ ├── daemonset-probes-values.yaml │ ├── deployment-basic-values.yaml │ ├── deployment-config-values.yaml │ ├── deployment-hpa-values.yaml │ ├── deployment-ingress-values.yaml │ ├── deployment-ipfamily-values.yaml │ └── deployment-probes-values.yaml ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── configmap.yaml │ ├── daemonset.yaml │ ├── deployment.yaml │ ├── hpa.yaml │ ├── httproute.yaml │ ├── ingress.yaml │ ├── keda.yaml │ ├── poddisruptionbudget.yaml │ ├── podsecuritypolicy.yaml │ ├── pullsecret.yaml │ ├── role.yaml │ ├── rolebinding.yaml │ ├── service.yaml │ ├── serviceaccount.yaml │ └── servicemonitor.yaml └── values.yaml └── kubernetes-ingress ├── .helmignore ├── Chart.yaml ├── README.md ├── chart-icon.png ├── ci ├── daemonset-customconfig-templated-values.yaml ├── daemonset-customconfig-values.yaml ├── daemonset-customnodeport-values.yaml ├── daemonset-default-values.yaml ├── daemonset-disableddefaultbackend-values.yaml ├── daemonset-disabledsecretconfig-values.yaml ├── daemonset-enableports-values.yaml ├── daemonset-extraargs-values.yaml ├── daemonset-extraenvs-values.yaml ├── daemonset-hostport-values.yaml ├── daemonset-ingressclass-values.yaml ├── daemonset-ipfamily-values.yaml ├── daemonset-kubernetesgateway-values.yaml ├── daemonset-nodeport-values.yaml ├── daemonset-privileged-ports.values.yaml ├── daemonset-publishservice-values.yaml ├── daemonset-serviceannotation-values.yaml ├── daemonset-strategy-values.yaml ├── daemonset-unprivileged-values.yaml ├── deployment-customconfig-templated-values.yaml ├── deployment-customconfig-values.yaml ├── deployment-customnodeport-values.yaml ├── deployment-default-values.yaml ├── deployment-disableddefaultbackend-values.yaml ├── deployment-disabledsecretconfig-values.yaml ├── deployment-enableports-values.yaml ├── deployment-extraargs-values.yaml ├── deployment-extraenvs-values.yaml ├── deployment-hpa-values.yaml ├── deployment-ingressclass-values.yaml ├── deployment-ipfamily-values.yaml ├── deployment-kubernetesgateway-values.yaml ├── deployment-nodeport-values.yaml ├── deployment-podannotations-templated-values.yaml ├── deployment-podmonitor-values.yaml ├── deployment-privileged-ports.values.yaml ├── deployment-publishservice-values.yaml ├── deployment-replicacount-unset.yaml ├── deployment-strategy-values.yaml └── deployment-unprivileged-values.yaml ├── templates ├── NOTES.txt ├── _helpers.tpl ├── clusterrole.yaml ├── clusterrolebinding.yaml ├── controller-configmap.yaml ├── controller-crdjob.yaml ├── controller-daemonset.yaml ├── controller-defaultcertsecret.yaml ├── controller-deployment.yaml ├── controller-hpa.yaml ├── controller-ingressclass.yaml ├── controller-keda.yaml ├── controller-poddisruptionbudget.yaml ├── controller-podmonitor.yaml ├── controller-podsecuritypolicy.yaml ├── controller-proxy-deployment.yaml ├── controller-proxy-service.yaml ├── controller-pullsecret.yaml ├── controller-role.yaml ├── controller-rolebinding.yaml ├── controller-service-metrics.yaml ├── controller-service.yaml ├── controller-serviceaccount.yaml ├── controller-servicemonitor.yaml └── namespace.yaml └── values.yaml /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/helm-charts/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.circleci/ct.yaml: -------------------------------------------------------------------------------- 1 | chart-dirs: . 2 | -------------------------------------------------------------------------------- /.circleci/install_charts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/helm-charts/HEAD/.circleci/install_charts.sh -------------------------------------------------------------------------------- /.circleci/install_tools.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/helm-charts/HEAD/.circleci/install_tools.sh -------------------------------------------------------------------------------- /.circleci/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/helm-charts/HEAD/.circleci/release.sh -------------------------------------------------------------------------------- /.github/workflows/inactive.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/helm-charts/HEAD/.github/workflows/inactive.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/helm-charts/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/helm-charts/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/helm-charts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/helm-charts/HEAD/README.md -------------------------------------------------------------------------------- /haproxy/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/helm-charts/HEAD/haproxy/.helmignore -------------------------------------------------------------------------------- /haproxy/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/helm-charts/HEAD/haproxy/Chart.yaml -------------------------------------------------------------------------------- /haproxy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/helm-charts/HEAD/haproxy/README.md -------------------------------------------------------------------------------- /haproxy/chart-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/helm-charts/HEAD/haproxy/chart-icon.png -------------------------------------------------------------------------------- /haproxy/ci/daemonset-basic-values.yaml: -------------------------------------------------------------------------------- 1 | kind: DaemonSet 2 | replicaCount: 2 3 | -------------------------------------------------------------------------------- /haproxy/ci/daemonset-hostnet-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/helm-charts/HEAD/haproxy/ci/daemonset-hostnet-values.yaml -------------------------------------------------------------------------------- /haproxy/ci/daemonset-ingress-values.yaml: -------------------------------------------------------------------------------- 1 | kind: DaemonSet 2 | ingress: 3 | enabled: true 4 | -------------------------------------------------------------------------------- /haproxy/ci/daemonset-ipfamily-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/helm-charts/HEAD/haproxy/ci/daemonset-ipfamily-values.yaml -------------------------------------------------------------------------------- /haproxy/ci/daemonset-probes-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/helm-charts/HEAD/haproxy/ci/daemonset-probes-values.yaml -------------------------------------------------------------------------------- /haproxy/ci/deployment-basic-values.yaml: -------------------------------------------------------------------------------- 1 | kind: Deployment 2 | -------------------------------------------------------------------------------- /haproxy/ci/deployment-config-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/helm-charts/HEAD/haproxy/ci/deployment-config-values.yaml -------------------------------------------------------------------------------- /haproxy/ci/deployment-hpa-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/helm-charts/HEAD/haproxy/ci/deployment-hpa-values.yaml -------------------------------------------------------------------------------- /haproxy/ci/deployment-ingress-values.yaml: -------------------------------------------------------------------------------- 1 | kind: Deployment 2 | ingress: 3 | enabled: true 4 | -------------------------------------------------------------------------------- /haproxy/ci/deployment-ipfamily-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/helm-charts/HEAD/haproxy/ci/deployment-ipfamily-values.yaml -------------------------------------------------------------------------------- /haproxy/ci/deployment-probes-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/helm-charts/HEAD/haproxy/ci/deployment-probes-values.yaml -------------------------------------------------------------------------------- /haproxy/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/helm-charts/HEAD/haproxy/templates/NOTES.txt -------------------------------------------------------------------------------- /haproxy/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/helm-charts/HEAD/haproxy/templates/_helpers.tpl -------------------------------------------------------------------------------- /haproxy/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/helm-charts/HEAD/haproxy/templates/configmap.yaml -------------------------------------------------------------------------------- /haproxy/templates/daemonset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/helm-charts/HEAD/haproxy/templates/daemonset.yaml -------------------------------------------------------------------------------- /haproxy/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/helm-charts/HEAD/haproxy/templates/deployment.yaml -------------------------------------------------------------------------------- /haproxy/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/helm-charts/HEAD/haproxy/templates/hpa.yaml -------------------------------------------------------------------------------- /haproxy/templates/httproute.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/helm-charts/HEAD/haproxy/templates/httproute.yaml -------------------------------------------------------------------------------- /haproxy/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/helm-charts/HEAD/haproxy/templates/ingress.yaml -------------------------------------------------------------------------------- /haproxy/templates/keda.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/helm-charts/HEAD/haproxy/templates/keda.yaml -------------------------------------------------------------------------------- /haproxy/templates/poddisruptionbudget.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/helm-charts/HEAD/haproxy/templates/poddisruptionbudget.yaml -------------------------------------------------------------------------------- /haproxy/templates/podsecuritypolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/helm-charts/HEAD/haproxy/templates/podsecuritypolicy.yaml -------------------------------------------------------------------------------- /haproxy/templates/pullsecret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/helm-charts/HEAD/haproxy/templates/pullsecret.yaml -------------------------------------------------------------------------------- /haproxy/templates/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/helm-charts/HEAD/haproxy/templates/role.yaml -------------------------------------------------------------------------------- /haproxy/templates/rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/helm-charts/HEAD/haproxy/templates/rolebinding.yaml -------------------------------------------------------------------------------- /haproxy/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/helm-charts/HEAD/haproxy/templates/service.yaml -------------------------------------------------------------------------------- /haproxy/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/helm-charts/HEAD/haproxy/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /haproxy/templates/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/helm-charts/HEAD/haproxy/templates/servicemonitor.yaml -------------------------------------------------------------------------------- /haproxy/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/helm-charts/HEAD/haproxy/values.yaml -------------------------------------------------------------------------------- /kubernetes-ingress/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/helm-charts/HEAD/kubernetes-ingress/.helmignore -------------------------------------------------------------------------------- /kubernetes-ingress/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/helm-charts/HEAD/kubernetes-ingress/Chart.yaml -------------------------------------------------------------------------------- /kubernetes-ingress/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/helm-charts/HEAD/kubernetes-ingress/README.md -------------------------------------------------------------------------------- /kubernetes-ingress/chart-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/helm-charts/HEAD/kubernetes-ingress/chart-icon.png -------------------------------------------------------------------------------- /kubernetes-ingress/ci/daemonset-customconfig-templated-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/helm-charts/HEAD/kubernetes-ingress/ci/daemonset-customconfig-templated-values.yaml -------------------------------------------------------------------------------- /kubernetes-ingress/ci/daemonset-customconfig-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/helm-charts/HEAD/kubernetes-ingress/ci/daemonset-customconfig-values.yaml -------------------------------------------------------------------------------- /kubernetes-ingress/ci/daemonset-customnodeport-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/helm-charts/HEAD/kubernetes-ingress/ci/daemonset-customnodeport-values.yaml -------------------------------------------------------------------------------- /kubernetes-ingress/ci/daemonset-default-values.yaml: -------------------------------------------------------------------------------- 1 | controller: 2 | kind: DaemonSet 3 | -------------------------------------------------------------------------------- /kubernetes-ingress/ci/daemonset-disableddefaultbackend-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/helm-charts/HEAD/kubernetes-ingress/ci/daemonset-disableddefaultbackend-values.yaml -------------------------------------------------------------------------------- /kubernetes-ingress/ci/daemonset-disabledsecretconfig-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/helm-charts/HEAD/kubernetes-ingress/ci/daemonset-disabledsecretconfig-values.yaml -------------------------------------------------------------------------------- /kubernetes-ingress/ci/daemonset-enableports-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/helm-charts/HEAD/kubernetes-ingress/ci/daemonset-enableports-values.yaml -------------------------------------------------------------------------------- /kubernetes-ingress/ci/daemonset-extraargs-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/helm-charts/HEAD/kubernetes-ingress/ci/daemonset-extraargs-values.yaml -------------------------------------------------------------------------------- /kubernetes-ingress/ci/daemonset-extraenvs-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/helm-charts/HEAD/kubernetes-ingress/ci/daemonset-extraenvs-values.yaml -------------------------------------------------------------------------------- /kubernetes-ingress/ci/daemonset-hostport-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/helm-charts/HEAD/kubernetes-ingress/ci/daemonset-hostport-values.yaml -------------------------------------------------------------------------------- /kubernetes-ingress/ci/daemonset-ingressclass-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/helm-charts/HEAD/kubernetes-ingress/ci/daemonset-ingressclass-values.yaml -------------------------------------------------------------------------------- /kubernetes-ingress/ci/daemonset-ipfamily-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/helm-charts/HEAD/kubernetes-ingress/ci/daemonset-ipfamily-values.yaml -------------------------------------------------------------------------------- /kubernetes-ingress/ci/daemonset-kubernetesgateway-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/helm-charts/HEAD/kubernetes-ingress/ci/daemonset-kubernetesgateway-values.yaml -------------------------------------------------------------------------------- /kubernetes-ingress/ci/daemonset-nodeport-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/helm-charts/HEAD/kubernetes-ingress/ci/daemonset-nodeport-values.yaml -------------------------------------------------------------------------------- /kubernetes-ingress/ci/daemonset-privileged-ports.values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/helm-charts/HEAD/kubernetes-ingress/ci/daemonset-privileged-ports.values.yaml -------------------------------------------------------------------------------- /kubernetes-ingress/ci/daemonset-publishservice-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/helm-charts/HEAD/kubernetes-ingress/ci/daemonset-publishservice-values.yaml -------------------------------------------------------------------------------- /kubernetes-ingress/ci/daemonset-serviceannotation-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/helm-charts/HEAD/kubernetes-ingress/ci/daemonset-serviceannotation-values.yaml -------------------------------------------------------------------------------- /kubernetes-ingress/ci/daemonset-strategy-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/helm-charts/HEAD/kubernetes-ingress/ci/daemonset-strategy-values.yaml -------------------------------------------------------------------------------- /kubernetes-ingress/ci/daemonset-unprivileged-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/helm-charts/HEAD/kubernetes-ingress/ci/daemonset-unprivileged-values.yaml -------------------------------------------------------------------------------- /kubernetes-ingress/ci/deployment-customconfig-templated-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/helm-charts/HEAD/kubernetes-ingress/ci/deployment-customconfig-templated-values.yaml -------------------------------------------------------------------------------- /kubernetes-ingress/ci/deployment-customconfig-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/helm-charts/HEAD/kubernetes-ingress/ci/deployment-customconfig-values.yaml -------------------------------------------------------------------------------- /kubernetes-ingress/ci/deployment-customnodeport-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/helm-charts/HEAD/kubernetes-ingress/ci/deployment-customnodeport-values.yaml -------------------------------------------------------------------------------- /kubernetes-ingress/ci/deployment-default-values.yaml: -------------------------------------------------------------------------------- 1 | # 2 | -------------------------------------------------------------------------------- /kubernetes-ingress/ci/deployment-disableddefaultbackend-values.yaml: -------------------------------------------------------------------------------- 1 | defaultBackend: 2 | enabled: false 3 | -------------------------------------------------------------------------------- /kubernetes-ingress/ci/deployment-disabledsecretconfig-values.yaml: -------------------------------------------------------------------------------- 1 | controller: 2 | defaultTLSSecret: 3 | enabled: false 4 | -------------------------------------------------------------------------------- /kubernetes-ingress/ci/deployment-enableports-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/helm-charts/HEAD/kubernetes-ingress/ci/deployment-enableports-values.yaml -------------------------------------------------------------------------------- /kubernetes-ingress/ci/deployment-extraargs-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/helm-charts/HEAD/kubernetes-ingress/ci/deployment-extraargs-values.yaml -------------------------------------------------------------------------------- /kubernetes-ingress/ci/deployment-extraenvs-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/helm-charts/HEAD/kubernetes-ingress/ci/deployment-extraenvs-values.yaml -------------------------------------------------------------------------------- /kubernetes-ingress/ci/deployment-hpa-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/helm-charts/HEAD/kubernetes-ingress/ci/deployment-hpa-values.yaml -------------------------------------------------------------------------------- /kubernetes-ingress/ci/deployment-ingressclass-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/helm-charts/HEAD/kubernetes-ingress/ci/deployment-ingressclass-values.yaml -------------------------------------------------------------------------------- /kubernetes-ingress/ci/deployment-ipfamily-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/helm-charts/HEAD/kubernetes-ingress/ci/deployment-ipfamily-values.yaml -------------------------------------------------------------------------------- /kubernetes-ingress/ci/deployment-kubernetesgateway-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/helm-charts/HEAD/kubernetes-ingress/ci/deployment-kubernetesgateway-values.yaml -------------------------------------------------------------------------------- /kubernetes-ingress/ci/deployment-nodeport-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/helm-charts/HEAD/kubernetes-ingress/ci/deployment-nodeport-values.yaml -------------------------------------------------------------------------------- /kubernetes-ingress/ci/deployment-podannotations-templated-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/helm-charts/HEAD/kubernetes-ingress/ci/deployment-podannotations-templated-values.yaml -------------------------------------------------------------------------------- /kubernetes-ingress/ci/deployment-podmonitor-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/helm-charts/HEAD/kubernetes-ingress/ci/deployment-podmonitor-values.yaml -------------------------------------------------------------------------------- /kubernetes-ingress/ci/deployment-privileged-ports.values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/helm-charts/HEAD/kubernetes-ingress/ci/deployment-privileged-ports.values.yaml -------------------------------------------------------------------------------- /kubernetes-ingress/ci/deployment-publishservice-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/helm-charts/HEAD/kubernetes-ingress/ci/deployment-publishservice-values.yaml -------------------------------------------------------------------------------- /kubernetes-ingress/ci/deployment-replicacount-unset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/helm-charts/HEAD/kubernetes-ingress/ci/deployment-replicacount-unset.yaml -------------------------------------------------------------------------------- /kubernetes-ingress/ci/deployment-strategy-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/helm-charts/HEAD/kubernetes-ingress/ci/deployment-strategy-values.yaml -------------------------------------------------------------------------------- /kubernetes-ingress/ci/deployment-unprivileged-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/helm-charts/HEAD/kubernetes-ingress/ci/deployment-unprivileged-values.yaml -------------------------------------------------------------------------------- /kubernetes-ingress/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/helm-charts/HEAD/kubernetes-ingress/templates/NOTES.txt -------------------------------------------------------------------------------- /kubernetes-ingress/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/helm-charts/HEAD/kubernetes-ingress/templates/_helpers.tpl -------------------------------------------------------------------------------- /kubernetes-ingress/templates/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/helm-charts/HEAD/kubernetes-ingress/templates/clusterrole.yaml -------------------------------------------------------------------------------- /kubernetes-ingress/templates/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/helm-charts/HEAD/kubernetes-ingress/templates/clusterrolebinding.yaml -------------------------------------------------------------------------------- /kubernetes-ingress/templates/controller-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/helm-charts/HEAD/kubernetes-ingress/templates/controller-configmap.yaml -------------------------------------------------------------------------------- /kubernetes-ingress/templates/controller-crdjob.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/helm-charts/HEAD/kubernetes-ingress/templates/controller-crdjob.yaml -------------------------------------------------------------------------------- /kubernetes-ingress/templates/controller-daemonset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/helm-charts/HEAD/kubernetes-ingress/templates/controller-daemonset.yaml -------------------------------------------------------------------------------- /kubernetes-ingress/templates/controller-defaultcertsecret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/helm-charts/HEAD/kubernetes-ingress/templates/controller-defaultcertsecret.yaml -------------------------------------------------------------------------------- /kubernetes-ingress/templates/controller-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/helm-charts/HEAD/kubernetes-ingress/templates/controller-deployment.yaml -------------------------------------------------------------------------------- /kubernetes-ingress/templates/controller-hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/helm-charts/HEAD/kubernetes-ingress/templates/controller-hpa.yaml -------------------------------------------------------------------------------- /kubernetes-ingress/templates/controller-ingressclass.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/helm-charts/HEAD/kubernetes-ingress/templates/controller-ingressclass.yaml -------------------------------------------------------------------------------- /kubernetes-ingress/templates/controller-keda.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/helm-charts/HEAD/kubernetes-ingress/templates/controller-keda.yaml -------------------------------------------------------------------------------- /kubernetes-ingress/templates/controller-poddisruptionbudget.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/helm-charts/HEAD/kubernetes-ingress/templates/controller-poddisruptionbudget.yaml -------------------------------------------------------------------------------- /kubernetes-ingress/templates/controller-podmonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/helm-charts/HEAD/kubernetes-ingress/templates/controller-podmonitor.yaml -------------------------------------------------------------------------------- /kubernetes-ingress/templates/controller-podsecuritypolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/helm-charts/HEAD/kubernetes-ingress/templates/controller-podsecuritypolicy.yaml -------------------------------------------------------------------------------- /kubernetes-ingress/templates/controller-proxy-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/helm-charts/HEAD/kubernetes-ingress/templates/controller-proxy-deployment.yaml -------------------------------------------------------------------------------- /kubernetes-ingress/templates/controller-proxy-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/helm-charts/HEAD/kubernetes-ingress/templates/controller-proxy-service.yaml -------------------------------------------------------------------------------- /kubernetes-ingress/templates/controller-pullsecret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/helm-charts/HEAD/kubernetes-ingress/templates/controller-pullsecret.yaml -------------------------------------------------------------------------------- /kubernetes-ingress/templates/controller-role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/helm-charts/HEAD/kubernetes-ingress/templates/controller-role.yaml -------------------------------------------------------------------------------- /kubernetes-ingress/templates/controller-rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/helm-charts/HEAD/kubernetes-ingress/templates/controller-rolebinding.yaml -------------------------------------------------------------------------------- /kubernetes-ingress/templates/controller-service-metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/helm-charts/HEAD/kubernetes-ingress/templates/controller-service-metrics.yaml -------------------------------------------------------------------------------- /kubernetes-ingress/templates/controller-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/helm-charts/HEAD/kubernetes-ingress/templates/controller-service.yaml -------------------------------------------------------------------------------- /kubernetes-ingress/templates/controller-serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/helm-charts/HEAD/kubernetes-ingress/templates/controller-serviceaccount.yaml -------------------------------------------------------------------------------- /kubernetes-ingress/templates/controller-servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/helm-charts/HEAD/kubernetes-ingress/templates/controller-servicemonitor.yaml -------------------------------------------------------------------------------- /kubernetes-ingress/templates/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/helm-charts/HEAD/kubernetes-ingress/templates/namespace.yaml -------------------------------------------------------------------------------- /kubernetes-ingress/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/helm-charts/HEAD/kubernetes-ingress/values.yaml --------------------------------------------------------------------------------