├── bitnami ├── kubeapps │ ├── .gitignore │ ├── Chart.lock │ ├── templates │ │ ├── kubeops-serviceaccount.yaml │ │ ├── tls-secrets.yaml │ │ ├── db-secret-jobs-cleanup-serviceaccount.yaml │ │ ├── apprepository-jobs-cleanup-serviceaccount.yaml │ │ ├── kubeops-service.yaml │ │ ├── dashboard-service.yaml │ │ ├── kubeops-config.yaml │ │ ├── assetsvc-service.yaml │ │ ├── apprepository-serviceaccount.yaml │ │ └── apprepositories-secret.yaml │ ├── crds │ │ └── apprepository-crd.yaml │ └── .helmignore ├── apache │ ├── ci │ │ └── ct-values.yaml │ ├── files │ │ ├── README.md │ │ └── vhosts │ │ │ └── README.md │ ├── Chart.lock │ ├── templates │ │ ├── configmap.yaml │ │ └── configmap-vhosts.yaml │ └── .helmignore ├── drupal │ ├── ci │ │ └── ct-values.yaml │ ├── templates │ │ ├── extra-list.yaml │ │ └── externaldb-secrets.yaml │ ├── Chart.lock │ └── .helmignore ├── ghost │ ├── ci │ │ └── ct-values.yaml │ ├── templates │ │ └── extra-list.yaml │ ├── Chart.lock │ └── .helmignore ├── jenkins │ ├── ci │ │ ├── ct-values.yaml │ │ └── values-with-metrics-and-ingress.yaml │ ├── templates │ │ └── extra-list.yaml │ ├── Chart.lock │ └── .helmignore ├── joomla │ ├── ci │ │ └── ct-values.yaml │ ├── templates │ │ └── extra-list.yaml │ ├── Chart.lock │ └── .helmignore ├── kong │ ├── ci │ │ ├── values-ingress.yaml │ │ ├── values-metrics-hpa-pdb.yaml │ │ ├── values-external-postgresql.yaml │ │ └── values-external-cassandra.yaml │ ├── templates │ │ ├── extra-list.yaml │ │ └── kong-prometheus-role.yaml │ ├── .helmignore │ └── Chart.lock ├── moodle │ ├── ci │ │ └── ct-values.yaml │ ├── templates │ │ ├── extra-list.yaml │ │ └── externaldb-secrets.yaml │ ├── Chart.lock │ └── .helmignore ├── nginx │ ├── ci │ │ └── ct-values.yaml │ ├── templates │ │ ├── extra-list.yaml │ │ └── server-block-configmap.yaml │ ├── Chart.lock │ └── .helmignore ├── odoo │ ├── ci │ │ └── ct-values.yaml │ ├── Chart.lock │ └── .helmignore ├── osclass │ ├── ci │ │ └── ct-values.yaml │ ├── Chart.lock │ ├── .helmignore │ └── templates │ │ └── externaldb-secrets.yaml ├── parse │ ├── ci │ │ └── ct-values.yaml │ ├── Chart.lock │ ├── files │ │ └── cloud │ │ │ └── README.md │ ├── .helmignore │ └── templates │ │ └── pvc.yaml ├── phpbb │ ├── ci │ │ └── ct-values.yaml │ ├── templates │ │ └── extra-list.yaml │ ├── Chart.lock │ └── .helmignore ├── postgresql-ha │ ├── ci │ │ ├── ct-values.yaml │ │ └── values-production-with-pdb.yaml │ ├── files │ │ ├── README.md │ │ ├── pgpool-entrypoint-initdb.d │ │ │ └── README.md │ │ ├── docker-entrypoint-initdb.d │ │ │ └── README.md │ │ └── conf.d │ │ │ └── README.md │ ├── templates │ │ └── extra-list.yaml │ ├── Chart.lock │ └── .helmignore ├── redmine │ ├── ci │ │ └── ct-values.yaml │ ├── templates │ │ └── extra-list.yaml │ ├── .helmignore │ └── Chart.lock ├── tomcat │ ├── ci │ │ ├── ct-values.yaml │ │ └── values-with-ingress-and-initcontainers.yaml │ ├── templates │ │ └── secrets.yaml │ ├── .helmignore │ └── Chart.yaml ├── wildfly │ ├── ci │ │ ├── ct-values.yaml │ │ └── values-with-initcontainers.yaml │ ├── templates │ │ └── secrets.yaml │ ├── .helmignore │ └── Chart.yaml ├── dokuwiki │ ├── ci │ │ └── ct-values.yaml │ ├── templates │ │ └── extra-list.yaml │ ├── Chart.lock │ └── .helmignore ├── keycloak │ ├── ci │ │ ├── ct-values.yaml │ │ ├── values-hpa-pdb.yaml │ │ ├── values-ha.yaml │ │ └── values-metrics-and-ingress.yaml │ ├── templates │ │ └── extra-list.yaml │ └── Chart.lock ├── opencart │ ├── ci │ │ └── ct-values.yaml │ ├── templates │ │ ├── extra-list.yaml │ │ └── externaldb-secrets.yaml │ ├── Chart.lock │ └── .helmignore ├── orangehrm │ ├── ci │ │ └── ct-values.yaml │ ├── templates │ │ ├── extra-list.yaml │ │ └── externaldb-secrets.yaml │ ├── Chart.lock │ └── .helmignore ├── owncloud │ ├── ci │ │ └── ct-values.yaml │ ├── Chart.lock │ ├── .helmignore │ └── templates │ │ ├── secrets.yaml │ │ └── externaldb-secrets.yaml ├── phabricator │ ├── ci │ │ └── ct-values.yaml │ ├── Chart.lock │ ├── templates │ │ ├── externaldb-secrets.yaml │ │ ├── pvc.yaml │ │ └── secrets.yaml │ └── .helmignore ├── prestashop │ ├── ci │ │ └── ct-values.yaml │ ├── templates │ │ ├── extra-list.yaml │ │ └── externaldb-secrets.yaml │ ├── Chart.lock │ └── .helmignore ├── suitecrm │ ├── ci │ │ └── ct-values.yaml │ ├── templates │ │ ├── extra-list.yaml │ │ └── suitecrm-pvc.yaml │ ├── Chart.lock │ └── .helmignore ├── testlink │ ├── ci │ │ └── ct-values.yaml │ ├── templates │ │ ├── extra-list.yaml │ │ └── externaldb-secrets.yaml │ ├── Chart.lock │ └── .helmignore ├── wordpress │ ├── ci │ │ ├── ct-values.yaml │ │ ├── values-hpa-pdb.yaml │ │ └── values-metrics-and-ingress.yaml │ ├── templates │ │ ├── extra-list.yaml │ │ └── configmap.yaml │ ├── Chart.lock │ └── .helmignore ├── jasperreports │ ├── ci │ │ └── ct-values.yaml │ ├── Chart.lock │ ├── .helmignore │ └── templates │ │ └── externaldb-secrets.yaml ├── tensorflow-resnet │ ├── ci │ │ ├── ct-values.yaml │ │ └── values-with-metrics.yaml │ └── .helmignore ├── consul │ ├── ci │ │ └── values-ingress.yaml │ ├── templates │ │ └── extra-list.yaml │ ├── Chart.lock │ └── .helmignore ├── nginx-ingress-controller │ ├── ci │ │ ├── ct-values.yaml │ │ └── values-production-with-psp.yaml │ ├── templates │ │ └── extra-list.yaml │ ├── Chart.lock │ └── .helmignore ├── postgresql │ ├── ci │ │ ├── shmvolume-disabled-values.yaml │ │ ├── commonAnnotations.yaml │ │ └── default-values.yaml │ ├── files │ │ ├── README.md │ │ ├── docker-entrypoint-initdb.d │ │ │ └── README.md │ │ └── conf.d │ │ │ └── README.md │ ├── templates │ │ ├── extra-list.yaml │ │ ├── serviceaccount.yaml │ │ └── metrics-configmap.yaml │ ├── Chart.lock │ └── .helmignore ├── aspnet-core │ ├── ci │ │ ├── values-ingress.yaml │ │ └── values-hpa-pdb.yaml │ ├── templates │ │ └── extra-list.yaml │ ├── Chart.lock │ └── .helmignore ├── cassandra │ ├── ci │ │ └── values-volume-permissions.yaml │ ├── templates │ │ └── extra-list.yaml │ ├── Chart.lock │ └── .helmignore ├── contour │ ├── ci │ │ └── ct-values.yaml │ ├── Chart.lock │ ├── templates │ │ ├── envoy │ │ │ └── serviceaccount.yaml │ │ ├── contour │ │ │ ├── serviceaccount.yaml │ │ │ └── configmap.yaml │ │ └── certgen │ │ │ └── serviceaccount.yaml │ └── .helmignore ├── rabbitmq │ ├── ci │ │ ├── tolerations-values.yaml │ │ └── default-values.yaml │ ├── Chart.lock │ ├── templates │ │ ├── serviceaccount.yaml │ │ ├── tls-secrets.yaml │ │ ├── role.yaml │ │ ├── configuration.yaml │ │ ├── rolebinding.yaml │ │ └── pdb.yaml │ └── .helmignore ├── redis │ ├── img │ │ ├── redis-topology.png │ │ └── redis-cluster-topology.png │ ├── ci │ │ ├── default-values.yaml │ │ └── extra-flags-values.yaml │ ├── .helmignore │ └── templates │ │ ├── secret.yaml │ │ ├── redis-serviceaccount.yaml │ │ └── redis-rolebinding.yaml ├── common │ ├── values.yaml │ ├── .helmignore │ └── templates │ │ ├── _tplvalues.tpl │ │ └── _warnings.tpl ├── kibana │ ├── ci │ │ └── values-with-es.yaml │ ├── Chart.lock │ ├── .helmignore │ └── templates │ │ ├── tests │ │ └── test-connection.yaml │ │ └── pvc.yaml ├── redis-cluster │ ├── img │ │ ├── redis-topology.png │ │ └── redis-cluster-topology.png │ ├── templates │ │ ├── extra-list.yaml │ │ └── redis-serviceaccount.yaml │ ├── Chart.lock │ └── .helmignore ├── airflow │ ├── files │ │ └── dags │ │ │ └── REAMDE.md │ ├── templates │ │ └── extradeploy.yaml │ ├── .helmignore │ ├── Chart.lock │ └── ci │ │ └── values-production-with-config.yaml ├── harbor │ ├── templates │ │ └── extra-list.yaml │ ├── ci │ │ └── values-production.yaml │ ├── .helmignore │ ├── Chart.lock │ └── conf │ │ ├── clair.yaml │ │ └── notary-signer.json ├── kafka │ ├── templates │ │ ├── extra-list.yaml │ │ └── serviceaccount.yaml │ ├── Chart.lock │ ├── .helmignore │ └── files │ │ └── jks │ │ └── README.md ├── kiam │ ├── templates │ │ └── extra-list.yaml │ ├── Chart.lock │ └── .helmignore ├── nats │ ├── templates │ │ └── extra-list.yaml │ ├── Chart.lock │ └── .helmignore ├── node │ ├── templates │ │ └── extra-list.yaml │ ├── ci │ │ └── values-with-ingress-and-persistence.yaml │ ├── Chart.lock │ └── .helmignore ├── kubewatch │ ├── templates │ │ ├── extra-list.yaml │ │ └── NOTES.txt │ ├── Chart.lock │ └── .helmignore ├── magento │ ├── templates │ │ ├── extra-list.yaml │ │ └── secrets.yaml │ ├── ci │ │ ├── ct-values.yaml │ │ ├── values-with-host-and-ingress.yaml │ │ └── values-production-with-host.yaml │ ├── .helmignore │ └── Chart.lock ├── phpmyadmin │ ├── templates │ │ └── extra-list.yaml │ ├── ci │ │ └── metrics-and-ingress-values.yaml │ ├── Chart.lock │ └── .helmignore ├── wavefront │ ├── templates │ │ ├── extra-list.yaml │ │ └── NOTES.txt │ ├── Chart.lock │ └── .helmignore ├── memcached │ ├── ci │ │ └── values-production.yaml │ ├── Chart.lock │ ├── templates │ │ └── secrets.yaml │ └── .helmignore ├── mediawiki │ ├── ci │ │ ├── ct-values.yaml │ │ └── values-with-host-and-ingress.yaml │ ├── Chart.lock │ └── .helmignore ├── kubernetes-event-exporter │ ├── templates │ │ ├── extra-list.yaml │ │ ├── _helpers.tpl │ │ ├── configmap.yaml │ │ └── serviceaccount.yaml │ ├── Chart.lock │ └── .helmignore ├── pytorch │ ├── ci │ │ └── values-production.yaml │ ├── templates │ │ ├── configmap.yaml │ │ ├── headless-svc.yaml │ │ └── pvc.yaml │ └── .helmignore ├── mongodb │ ├── ci │ │ └── values-replicaset-with-rbac.yaml │ ├── Chart.lock │ ├── templates │ │ ├── serviceaccount.yaml │ │ ├── role.yaml │ │ ├── configmap.yaml │ │ ├── initialization-configmap.yaml │ │ ├── arbiter │ │ │ └── configmap.yaml │ │ └── rolebinding.yaml │ └── .helmignore ├── spark │ ├── ci │ │ └── values-with-ingress-and-autoscaling.yaml │ ├── Chart.lock │ ├── templates │ │ └── headless-svc.yaml │ └── .helmignore ├── logstash │ ├── files │ │ └── conf │ │ │ └── README.md │ ├── Chart.lock │ ├── ci │ │ └── values-with-metrics-and-ingress.yaml │ ├── .helmignore │ └── templates │ │ └── headless-svc.yaml ├── etcd │ ├── Chart.lock │ ├── .helmignore │ └── templates │ │ ├── secrets.yaml │ │ ├── pdb.yaml │ │ └── snapshot-pvc.yaml ├── minio │ ├── Chart.lock │ ├── templates │ │ ├── serviceaccount.yaml │ │ ├── tls-secrets.yaml │ │ ├── secrets.yaml │ │ └── svc-headless.yaml │ ├── .helmignore │ └── ci │ │ └── values-production.yaml ├── mysql │ ├── Chart.lock │ ├── files │ │ └── docker-entrypoint-initdb.d │ │ │ └── README.md │ ├── .helmignore │ ├── templates │ │ └── primary │ │ │ └── initialization-configmap.yaml │ └── ci │ │ └── values-production-with-rbac.yaml ├── thanos │ ├── Chart.lock │ ├── ci │ │ └── values-with-ingress-and-metrics.yaml │ ├── .helmignore │ └── templates │ │ ├── ruler │ │ ├── configmap.yaml │ │ └── serviceaccount.yaml │ │ ├── bucketweb │ │ └── tls-secrets.yaml │ │ ├── query-frontend │ │ ├── tls-secrets.yaml │ │ ├── configmap.yaml │ │ └── psp-clusterrole.yaml │ │ ├── storegateway │ │ └── configmap.yaml │ │ └── query │ │ ├── tls-secrets.yaml │ │ ├── psp-clusterrole.yaml │ │ ├── sd-configmap.yaml │ │ └── tls-server-secret.yaml ├── fluentd │ ├── Chart.lock │ ├── .helmignore │ └── templates │ │ ├── tls-certs.yaml │ │ └── forwarder-clusterrolebinding.yaml ├── grafana │ ├── Chart.lock │ ├── .helmignore │ └── templates │ │ ├── smtp-secret.yaml │ │ ├── secret.yaml │ │ └── pvc.yaml ├── mariadb │ ├── Chart.lock │ ├── .helmignore │ └── templates │ │ └── primary │ │ └── initialization-configmap.yaml ├── mxnet │ ├── Chart.lock │ ├── templates │ │ ├── configmap.yaml │ │ ├── headless-svc.yaml │ │ └── deployment-pvc.yaml │ ├── ci │ │ └── values-production.yaml │ └── .helmignore ├── external-dns │ ├── Chart.lock │ ├── templates │ │ ├── NOTES.txt │ │ ├── configmap.yaml │ │ ├── serviceaccount.yaml │ │ ├── psp-clusterrole.yaml │ │ ├── psp-clusterrolebinding.yaml │ │ ├── clusterrolebinding.yaml │ │ └── rolebindings.yaml │ └── .helmignore ├── influxdb │ ├── Chart.lock │ ├── files │ │ ├── docker-entrypoint-initdb.d │ │ │ └── README.md │ │ └── conf │ │ │ └── README.md │ ├── .helmignore │ └── templates │ │ └── influxdb │ │ ├── pvc-backup.yaml │ │ └── pvc.yaml ├── mariadb-galera │ ├── Chart.lock │ ├── templates │ │ ├── serviceaccount.yaml │ │ ├── role.yaml │ │ ├── rolebinding.yaml │ │ ├── prometheusrules.yaml │ │ └── configmap.yaml │ ├── files │ │ └── docker-entrypoint-initdb.d │ │ │ └── README.md │ ├── .helmignore │ └── ci │ │ └── values-production-with-rbac.yaml ├── metrics-server │ ├── Chart.lock │ ├── templates │ │ ├── serviceaccount.yaml │ │ ├── metrics-api-service.yaml │ │ ├── metrics-server-crb.yaml │ │ ├── role-binding.yaml │ │ └── auth-delegator-crb.yaml │ ├── ci │ │ └── values-with-rbac.yaml │ └── .helmignore ├── node-exporter │ ├── Chart.lock │ ├── templates │ │ ├── serviceaccount.yaml │ │ ├── psp-clusterrole.yaml │ │ └── psp-clusterrolebinding.yaml │ └── .helmignore ├── kube-state-metrics │ ├── Chart.lock │ ├── templates │ │ ├── serviceaccount.yaml │ │ ├── psp-clusterrole.yaml │ │ ├── clusterrolebinding.yaml │ │ └── psp-clusterrolebinding.yaml │ └── .helmignore ├── mongodb-sharded │ ├── Chart.lock │ ├── .helmignore │ └── templates │ │ ├── mongos │ │ └── mongos-configmap.yaml │ │ ├── shard │ │ ├── shard-data-configmap.yaml │ │ └── shard-arbiter-configmap.yaml │ │ ├── config-server │ │ └── config-server-configmap.yaml │ │ └── serviceaccount.yaml ├── elasticsearch │ ├── templates │ │ ├── configmap-es.yaml │ │ ├── configmap-initscripts.yaml │ │ ├── data-svc.yaml │ │ └── configmap-curator.yaml │ ├── Chart.lock │ └── .helmignore ├── ejbca │ ├── Chart.lock │ └── .helmignore ├── metallb │ ├── templates │ │ ├── configmap.yaml │ │ ├── secret.yaml │ │ └── service-accounts.yaml │ └── .helmignore ├── zookeeper │ └── .helmignore ├── discourse │ ├── Chart.lock │ └── .helmignore ├── kube-prometheus │ ├── .helmignore │ ├── templates │ │ ├── prometheus-operator │ │ │ ├── serviceaccount.yaml │ │ │ ├── configmap.yaml │ │ │ └── psp-clusterrole.yaml │ │ ├── prometheus │ │ │ ├── additionalPrometheusRules.yaml │ │ │ └── psp-clusterrole.yaml │ │ └── alertmanager │ │ │ ├── psp-clusterrole.yaml │ │ │ └── secrets.yaml │ └── Chart.lock └── spring-cloud-dataflow │ ├── templates │ ├── externaldb-secrets.yaml │ ├── serviceaccount.yaml │ ├── externalrabbitmq-secrets.yaml │ └── rolebinding.yaml │ ├── .helmignore │ └── Chart.lock ├── .gitignore ├── demo.gif ├── template └── CHART_NAME │ ├── templates │ ├── extra-list.yaml │ └── NOTES.txt │ └── .helmignore ├── .github ├── ct-lint.yaml └── ct-install.yaml ├── CHART_CATEGORIES ├── githooks └── pre-commit │ └── kubeapps └── LICENSE /bitnami/kubeapps/.gitignore: -------------------------------------------------------------------------------- 1 | charts/*.tgz 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.tgz 2 | /.idea/* 3 | .vscode 4 | .DS_Store 5 | -------------------------------------------------------------------------------- /bitnami/apache/ci/ct-values.yaml: -------------------------------------------------------------------------------- 1 | service: 2 | type: ClusterIP 3 | -------------------------------------------------------------------------------- /bitnami/drupal/ci/ct-values.yaml: -------------------------------------------------------------------------------- 1 | service: 2 | type: ClusterIP 3 | -------------------------------------------------------------------------------- /bitnami/ghost/ci/ct-values.yaml: -------------------------------------------------------------------------------- 1 | service: 2 | type: ClusterIP 3 | -------------------------------------------------------------------------------- /bitnami/jenkins/ci/ct-values.yaml: -------------------------------------------------------------------------------- 1 | service: 2 | type: ClusterIP 3 | -------------------------------------------------------------------------------- /bitnami/joomla/ci/ct-values.yaml: -------------------------------------------------------------------------------- 1 | service: 2 | type: ClusterIP 3 | -------------------------------------------------------------------------------- /bitnami/kong/ci/values-ingress.yaml: -------------------------------------------------------------------------------- 1 | ingress: 2 | enabled: true 3 | -------------------------------------------------------------------------------- /bitnami/moodle/ci/ct-values.yaml: -------------------------------------------------------------------------------- 1 | service: 2 | type: ClusterIP 3 | -------------------------------------------------------------------------------- /bitnami/nginx/ci/ct-values.yaml: -------------------------------------------------------------------------------- 1 | service: 2 | type: ClusterIP 3 | -------------------------------------------------------------------------------- /bitnami/odoo/ci/ct-values.yaml: -------------------------------------------------------------------------------- 1 | service: 2 | type: ClusterIP 3 | -------------------------------------------------------------------------------- /bitnami/osclass/ci/ct-values.yaml: -------------------------------------------------------------------------------- 1 | service: 2 | type: ClusterIP 3 | -------------------------------------------------------------------------------- /bitnami/parse/ci/ct-values.yaml: -------------------------------------------------------------------------------- 1 | service: 2 | type: ClusterIP 3 | -------------------------------------------------------------------------------- /bitnami/phpbb/ci/ct-values.yaml: -------------------------------------------------------------------------------- 1 | service: 2 | type: ClusterIP 3 | -------------------------------------------------------------------------------- /bitnami/postgresql-ha/ci/ct-values.yaml: -------------------------------------------------------------------------------- 1 | fullnameOverride: test 2 | -------------------------------------------------------------------------------- /bitnami/redmine/ci/ct-values.yaml: -------------------------------------------------------------------------------- 1 | service: 2 | type: ClusterIP 3 | -------------------------------------------------------------------------------- /bitnami/tomcat/ci/ct-values.yaml: -------------------------------------------------------------------------------- 1 | service: 2 | type: ClusterIP 3 | -------------------------------------------------------------------------------- /bitnami/wildfly/ci/ct-values.yaml: -------------------------------------------------------------------------------- 1 | service: 2 | type: ClusterIP 3 | -------------------------------------------------------------------------------- /bitnami/dokuwiki/ci/ct-values.yaml: -------------------------------------------------------------------------------- 1 | service: 2 | type: ClusterIP 3 | -------------------------------------------------------------------------------- /bitnami/keycloak/ci/ct-values.yaml: -------------------------------------------------------------------------------- 1 | service: 2 | type: ClusterIP 3 | -------------------------------------------------------------------------------- /bitnami/opencart/ci/ct-values.yaml: -------------------------------------------------------------------------------- 1 | service: 2 | type: ClusterIP 3 | -------------------------------------------------------------------------------- /bitnami/orangehrm/ci/ct-values.yaml: -------------------------------------------------------------------------------- 1 | service: 2 | type: ClusterIP 3 | -------------------------------------------------------------------------------- /bitnami/owncloud/ci/ct-values.yaml: -------------------------------------------------------------------------------- 1 | service: 2 | type: ClusterIP 3 | -------------------------------------------------------------------------------- /bitnami/phabricator/ci/ct-values.yaml: -------------------------------------------------------------------------------- 1 | service: 2 | type: ClusterIP 3 | -------------------------------------------------------------------------------- /bitnami/prestashop/ci/ct-values.yaml: -------------------------------------------------------------------------------- 1 | service: 2 | type: ClusterIP 3 | -------------------------------------------------------------------------------- /bitnami/suitecrm/ci/ct-values.yaml: -------------------------------------------------------------------------------- 1 | service: 2 | type: ClusterIP 3 | -------------------------------------------------------------------------------- /bitnami/testlink/ci/ct-values.yaml: -------------------------------------------------------------------------------- 1 | service: 2 | type: ClusterIP 3 | -------------------------------------------------------------------------------- /bitnami/wordpress/ci/ct-values.yaml: -------------------------------------------------------------------------------- 1 | service: 2 | type: ClusterIP 3 | -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corymsmith/charts/master/demo.gif -------------------------------------------------------------------------------- /bitnami/jasperreports/ci/ct-values.yaml: -------------------------------------------------------------------------------- 1 | service: 2 | type: ClusterIP 3 | -------------------------------------------------------------------------------- /bitnami/tensorflow-resnet/ci/ct-values.yaml: -------------------------------------------------------------------------------- 1 | service: 2 | type: ClusterIP 3 | -------------------------------------------------------------------------------- /bitnami/consul/ci/values-ingress.yaml: -------------------------------------------------------------------------------- 1 | ingress: 2 | enabled: true 3 | tls: true 4 | -------------------------------------------------------------------------------- /bitnami/nginx-ingress-controller/ci/ct-values.yaml: -------------------------------------------------------------------------------- 1 | service: 2 | type: ClusterIP 3 | -------------------------------------------------------------------------------- /bitnami/postgresql/ci/shmvolume-disabled-values.yaml: -------------------------------------------------------------------------------- 1 | shmVolume: 2 | enabled: false 3 | -------------------------------------------------------------------------------- /bitnami/aspnet-core/ci/values-ingress.yaml: -------------------------------------------------------------------------------- 1 | ingress: 2 | enabled: true 3 | tls: true 4 | -------------------------------------------------------------------------------- /bitnami/apache/files/README.md: -------------------------------------------------------------------------------- 1 | Copy here your `httpd.conf` file to use mount it as a config map. -------------------------------------------------------------------------------- /bitnami/cassandra/ci/values-volume-permissions.yaml: -------------------------------------------------------------------------------- 1 | volumePermissions: 2 | enabled: true 3 | -------------------------------------------------------------------------------- /bitnami/aspnet-core/ci/values-hpa-pdb.yaml: -------------------------------------------------------------------------------- 1 | autoscaling: 2 | enabled: true 3 | pdb: 4 | create: true 5 | -------------------------------------------------------------------------------- /bitnami/keycloak/ci/values-hpa-pdb.yaml: -------------------------------------------------------------------------------- 1 | autoscaling: 2 | enabled: true 3 | pdb: 4 | create: true 5 | -------------------------------------------------------------------------------- /bitnami/wordpress/ci/values-hpa-pdb.yaml: -------------------------------------------------------------------------------- 1 | autoscaling: 2 | enabled: true 3 | pdb: 4 | create: true 5 | -------------------------------------------------------------------------------- /bitnami/contour/ci/ct-values.yaml: -------------------------------------------------------------------------------- 1 | envoy: 2 | service: 3 | type: ClusterIP 4 | externalTrafficPolicy: null 5 | -------------------------------------------------------------------------------- /bitnami/postgresql/files/README.md: -------------------------------------------------------------------------------- 1 | Copy here your postgresql.conf and/or pg_hba.conf files to use it as a config map. 2 | -------------------------------------------------------------------------------- /bitnami/rabbitmq/ci/tolerations-values.yaml: -------------------------------------------------------------------------------- 1 | tolerations: 2 | - key: foo 3 | operator: "Equal" 4 | value: bar 5 | -------------------------------------------------------------------------------- /bitnami/postgresql-ha/files/README.md: -------------------------------------------------------------------------------- 1 | Copy here your postgresql.conf and/or pg_hba.conf files to use it as a config map. 2 | -------------------------------------------------------------------------------- /bitnami/redis/img/redis-topology.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corymsmith/charts/master/bitnami/redis/img/redis-topology.png -------------------------------------------------------------------------------- /bitnami/common/values.yaml: -------------------------------------------------------------------------------- 1 | ## bitnami/common 2 | ## It is required by CI/CD tools and processes. 3 | exampleValue: common-chart 4 | -------------------------------------------------------------------------------- /bitnami/apache/files/vhosts/README.md: -------------------------------------------------------------------------------- 1 | Copy here your `*.conf` virtual host files to have them mounted to the container as a config map. -------------------------------------------------------------------------------- /bitnami/kibana/ci/values-with-es.yaml: -------------------------------------------------------------------------------- 1 | elasticsearch: 2 | hosts: 3 | - elasticsearch-1 4 | - elasticsearch-2 5 | port: 9300 6 | -------------------------------------------------------------------------------- /bitnami/redis-cluster/img/redis-topology.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corymsmith/charts/master/bitnami/redis-cluster/img/redis-topology.png -------------------------------------------------------------------------------- /bitnami/redis/img/redis-cluster-topology.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corymsmith/charts/master/bitnami/redis/img/redis-cluster-topology.png -------------------------------------------------------------------------------- /bitnami/kong/ci/values-metrics-hpa-pdb.yaml: -------------------------------------------------------------------------------- 1 | metrics: 2 | enabled: true 3 | autoscaling: 4 | enabled: true 5 | 6 | pdb: 7 | enabled: true 8 | -------------------------------------------------------------------------------- /bitnami/postgresql/ci/commonAnnotations.yaml: -------------------------------------------------------------------------------- 1 | commonAnnotations: 2 | helm.sh/hook: 'pre-install, pre-upgrade' 3 | helm.sh/hook-weight: '-1' 4 | -------------------------------------------------------------------------------- /bitnami/rabbitmq/ci/default-values.yaml: -------------------------------------------------------------------------------- 1 | # Leave this file empty to ensure that CI runs builds against the default configuration in values.yaml. 2 | -------------------------------------------------------------------------------- /bitnami/redis/ci/default-values.yaml: -------------------------------------------------------------------------------- 1 | # Leave this file empty to ensure that CI runs builds against the default configuration in values.yaml. 2 | -------------------------------------------------------------------------------- /bitnami/airflow/files/dags/REAMDE.md: -------------------------------------------------------------------------------- 1 | You can copy here your DAGs files so they are mounted at "/opt/bitnami/airflow/dags" inside the docker image. 2 | -------------------------------------------------------------------------------- /bitnami/postgresql/ci/default-values.yaml: -------------------------------------------------------------------------------- 1 | # Leave this file empty to ensure that CI runs builds against the default configuration in values.yaml. 2 | -------------------------------------------------------------------------------- /bitnami/redis-cluster/img/redis-cluster-topology.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corymsmith/charts/master/bitnami/redis-cluster/img/redis-cluster-topology.png -------------------------------------------------------------------------------- /bitnami/consul/templates/extra-list.yaml: -------------------------------------------------------------------------------- 1 | {{- range .Values.extraDeploy }} 2 | --- 3 | {{ include "common.tplvalues.render" (dict "value" . "context" $) }} 4 | {{- end }} 5 | -------------------------------------------------------------------------------- /bitnami/drupal/templates/extra-list.yaml: -------------------------------------------------------------------------------- 1 | {{- range .Values.extraDeploy }} 2 | --- 3 | {{ include "common.tplvalues.render" (dict "value" . "context" $) }} 4 | {{- end }} 5 | -------------------------------------------------------------------------------- /bitnami/ghost/templates/extra-list.yaml: -------------------------------------------------------------------------------- 1 | {{- range .Values.extraDeploy }} 2 | --- 3 | {{ include "common.tplvalues.render" (dict "value" . "context" $) }} 4 | {{- end }} 5 | -------------------------------------------------------------------------------- /bitnami/harbor/templates/extra-list.yaml: -------------------------------------------------------------------------------- 1 | {{- range .Values.extraDeploy }} 2 | --- 3 | {{ include "common.tplvalues.render" (dict "value" . "context" $) }} 4 | {{- end }} 5 | -------------------------------------------------------------------------------- /bitnami/joomla/templates/extra-list.yaml: -------------------------------------------------------------------------------- 1 | {{- range .Values.extraDeploy }} 2 | --- 3 | {{ include "common.tplvalues.render" (dict "value" . "context" $) }} 4 | {{- end }} 5 | -------------------------------------------------------------------------------- /bitnami/kafka/templates/extra-list.yaml: -------------------------------------------------------------------------------- 1 | {{- range .Values.extraDeploy }} 2 | --- 3 | {{ include "common.tplvalues.render" (dict "value" . "context" $) }} 4 | {{- end }} 5 | -------------------------------------------------------------------------------- /bitnami/kiam/templates/extra-list.yaml: -------------------------------------------------------------------------------- 1 | {{- range .Values.extraDeploy }} 2 | --- 3 | {{ include "common.tplvalues.render" (dict "value" . "context" $) }} 4 | {{- end }} 5 | -------------------------------------------------------------------------------- /bitnami/kong/templates/extra-list.yaml: -------------------------------------------------------------------------------- 1 | {{- range .Values.extraDeploy }} 2 | --- 3 | {{ include "common.tplvalues.render" (dict "value" . "context" $) }} 4 | {{- end }} 5 | -------------------------------------------------------------------------------- /bitnami/moodle/templates/extra-list.yaml: -------------------------------------------------------------------------------- 1 | {{- range .Values.extraDeploy }} 2 | --- 3 | {{ include "common.tplvalues.render" (dict "value" . "context" $) }} 4 | {{- end }} 5 | -------------------------------------------------------------------------------- /bitnami/nats/templates/extra-list.yaml: -------------------------------------------------------------------------------- 1 | {{- range .Values.extraDeploy }} 2 | --- 3 | {{ include "common.tplvalues.render" (dict "value" . "context" $) }} 4 | {{- end }} 5 | -------------------------------------------------------------------------------- /bitnami/nginx/templates/extra-list.yaml: -------------------------------------------------------------------------------- 1 | {{- range .Values.extraDeploy }} 2 | --- 3 | {{ include "common.tplvalues.render" (dict "value" . "context" $) }} 4 | {{- end }} 5 | -------------------------------------------------------------------------------- /bitnami/node/templates/extra-list.yaml: -------------------------------------------------------------------------------- 1 | {{- range .Values.extraDeploy }} 2 | --- 3 | {{ include "common.tplvalues.render" (dict "value" . "context" $) }} 4 | {{- end }} 5 | -------------------------------------------------------------------------------- /bitnami/phpbb/templates/extra-list.yaml: -------------------------------------------------------------------------------- 1 | {{- range .Values.extraDeploy }} 2 | --- 3 | {{ include "common.tplvalues.render" (dict "value" . "context" $) }} 4 | {{- end }} 5 | -------------------------------------------------------------------------------- /bitnami/airflow/templates/extradeploy.yaml: -------------------------------------------------------------------------------- 1 | {{- range .Values.extraDeploy }} 2 | --- 3 | {{ include "common.tplvalues.render" (dict "value" . "context" $) }} 4 | {{- end }} 5 | -------------------------------------------------------------------------------- /bitnami/aspnet-core/templates/extra-list.yaml: -------------------------------------------------------------------------------- 1 | {{- range .Values.extraDeploy }} 2 | --- 3 | {{ include "common.tplvalues.render" (dict "value" . "context" $) }} 4 | {{- end }} 5 | -------------------------------------------------------------------------------- /bitnami/cassandra/templates/extra-list.yaml: -------------------------------------------------------------------------------- 1 | {{- range .Values.extraDeploy }} 2 | --- 3 | {{ include "common.tplvalues.render" (dict "value" . "context" $) }} 4 | {{- end }} 5 | -------------------------------------------------------------------------------- /bitnami/dokuwiki/templates/extra-list.yaml: -------------------------------------------------------------------------------- 1 | {{- range .Values.extraDeploy }} 2 | --- 3 | {{ include "common.tplvalues.render" (dict "value" . "context" $) }} 4 | {{- end }} 5 | -------------------------------------------------------------------------------- /bitnami/jenkins/templates/extra-list.yaml: -------------------------------------------------------------------------------- 1 | {{- range .Values.extraDeploy }} 2 | --- 3 | {{ include "common.tplvalues.render" (dict "value" . "context" $) }} 4 | {{- end }} 5 | -------------------------------------------------------------------------------- /bitnami/keycloak/templates/extra-list.yaml: -------------------------------------------------------------------------------- 1 | {{- range .Values.extraDeploy }} 2 | --- 3 | {{ include "common.tplvalues.render" (dict "value" . "context" $) }} 4 | {{- end }} 5 | -------------------------------------------------------------------------------- /bitnami/kubewatch/templates/extra-list.yaml: -------------------------------------------------------------------------------- 1 | {{- range .Values.extraDeploy }} 2 | --- 3 | {{ include "common.tplvalues.render" (dict "value" . "context" $) }} 4 | {{- end }} 5 | -------------------------------------------------------------------------------- /bitnami/magento/templates/extra-list.yaml: -------------------------------------------------------------------------------- 1 | {{- range .Values.extraDeploy }} 2 | --- 3 | {{ include "common.tplvalues.render" (dict "value" . "context" $) }} 4 | {{- end }} 5 | -------------------------------------------------------------------------------- /bitnami/opencart/templates/extra-list.yaml: -------------------------------------------------------------------------------- 1 | {{- range .Values.extraDeploy }} 2 | --- 3 | {{ include "common.tplvalues.render" (dict "value" . "context" $) }} 4 | {{- end }} 5 | -------------------------------------------------------------------------------- /bitnami/orangehrm/templates/extra-list.yaml: -------------------------------------------------------------------------------- 1 | {{- range .Values.extraDeploy }} 2 | --- 3 | {{ include "common.tplvalues.render" (dict "value" . "context" $) }} 4 | {{- end }} 5 | -------------------------------------------------------------------------------- /bitnami/phpmyadmin/templates/extra-list.yaml: -------------------------------------------------------------------------------- 1 | {{- range .Values.extraDeploy }} 2 | --- 3 | {{ include "common.tplvalues.render" (dict "value" . "context" $) }} 4 | {{- end }} 5 | -------------------------------------------------------------------------------- /bitnami/postgresql/templates/extra-list.yaml: -------------------------------------------------------------------------------- 1 | {{- range .Values.extraDeploy }} 2 | --- 3 | {{ include "common.tplvalues.render" (dict "value" . "context" $) }} 4 | {{- end }} 5 | -------------------------------------------------------------------------------- /bitnami/prestashop/templates/extra-list.yaml: -------------------------------------------------------------------------------- 1 | {{- range .Values.extraDeploy }} 2 | --- 3 | {{ include "common.tplvalues.render" (dict "value" . "context" $) }} 4 | {{- end }} 5 | -------------------------------------------------------------------------------- /bitnami/redmine/templates/extra-list.yaml: -------------------------------------------------------------------------------- 1 | {{- range .Values.extraDeploy }} 2 | --- 3 | {{ include "common.tplvalues.render" (dict "value" . "context" $) }} 4 | {{- end }} 5 | -------------------------------------------------------------------------------- /bitnami/suitecrm/templates/extra-list.yaml: -------------------------------------------------------------------------------- 1 | {{- range .Values.extraDeploy }} 2 | --- 3 | {{ include "common.tplvalues.render" (dict "value" . "context" $) }} 4 | {{- end }} 5 | -------------------------------------------------------------------------------- /bitnami/testlink/templates/extra-list.yaml: -------------------------------------------------------------------------------- 1 | {{- range .Values.extraDeploy }} 2 | --- 3 | {{ include "common.tplvalues.render" (dict "value" . "context" $) }} 4 | {{- end }} 5 | -------------------------------------------------------------------------------- /bitnami/wavefront/templates/extra-list.yaml: -------------------------------------------------------------------------------- 1 | {{- range .Values.extraDeploy }} 2 | --- 3 | {{ include "common.tplvalues.render" (dict "value" . "context" $) }} 4 | {{- end }} 5 | -------------------------------------------------------------------------------- /bitnami/wordpress/templates/extra-list.yaml: -------------------------------------------------------------------------------- 1 | {{- range .Values.extraDeploy }} 2 | --- 3 | {{ include "common.tplvalues.render" (dict "value" . "context" $) }} 4 | {{- end }} 5 | -------------------------------------------------------------------------------- /template/CHART_NAME/templates/extra-list.yaml: -------------------------------------------------------------------------------- 1 | {{- range .Values.extraDeploy }} 2 | --- 3 | {{ include "common.tplvalues.render" (dict "value" . "context" $) }} 4 | {{- end }} 5 | -------------------------------------------------------------------------------- /bitnami/keycloak/ci/values-ha.yaml: -------------------------------------------------------------------------------- 1 | serviceDiscovery: 2 | enabled: true 3 | cache: 4 | ownersCount: 2 5 | authOwnersCount: 2 6 | replicaCount: 2 7 | rbac: 8 | create: true 9 | -------------------------------------------------------------------------------- /bitnami/memcached/ci/values-production.yaml: -------------------------------------------------------------------------------- 1 | # Test values file for generating all of the yaml and check that 2 | # the rendering is correct 3 | 4 | metrics: 5 | enabled: true 6 | -------------------------------------------------------------------------------- /bitnami/postgresql-ha/templates/extra-list.yaml: -------------------------------------------------------------------------------- 1 | {{- range .Values.extraDeploy }} 2 | --- 3 | {{ include "common.tplvalues.render" (dict "value" . "context" $) }} 4 | {{- end }} 5 | -------------------------------------------------------------------------------- /bitnami/redis-cluster/templates/extra-list.yaml: -------------------------------------------------------------------------------- 1 | {{- range .Values.extraDeploy }} 2 | --- 3 | {{ include "common.tplvalues.render" (dict "value" . "context" $) }} 4 | {{- end }} 5 | -------------------------------------------------------------------------------- /bitnami/keycloak/ci/values-metrics-and-ingress.yaml: -------------------------------------------------------------------------------- 1 | ingress: 2 | enabled: true 3 | tls: true 4 | 5 | service: 6 | type: ClusterIP 7 | 8 | metrics: 9 | enabled: true 10 | -------------------------------------------------------------------------------- /bitnami/magento/ci/ct-values.yaml: -------------------------------------------------------------------------------- 1 | service: 2 | type: ClusterIP 3 | livenessProbe: 4 | httpGet: 5 | httpHeaders: [] 6 | readinessProbe: 7 | httpGet: 8 | httpHeaders: [] 9 | -------------------------------------------------------------------------------- /bitnami/mediawiki/ci/ct-values.yaml: -------------------------------------------------------------------------------- 1 | service: 2 | type: ClusterIP 3 | livenessProbe: 4 | httpGet: 5 | httpHeaders: [] 6 | readinessProbe: 7 | httpGet: 8 | httpHeaders: [] 9 | -------------------------------------------------------------------------------- /bitnami/kubernetes-event-exporter/templates/extra-list.yaml: -------------------------------------------------------------------------------- 1 | {{- range .Values.extraDeploy }} 2 | --- 3 | {{ include "common.tplvalues.render" (dict "value" . "context" $) }} 4 | {{- end }} 5 | -------------------------------------------------------------------------------- /bitnami/nginx-ingress-controller/templates/extra-list.yaml: -------------------------------------------------------------------------------- 1 | {{- range .Values.extraDeploy }} 2 | --- 3 | {{ include "common.tplvalues.render" (dict "value" . "context" $) }} 4 | {{- end }} 5 | -------------------------------------------------------------------------------- /bitnami/pytorch/ci/values-production.yaml: -------------------------------------------------------------------------------- 1 | # Test values file for generating all of the yaml and check that 2 | # the rendering is correct 3 | 4 | mode: distributed 5 | 6 | worldSize: 4 7 | -------------------------------------------------------------------------------- /bitnami/tensorflow-resnet/ci/values-with-metrics.yaml: -------------------------------------------------------------------------------- 1 | # Test values file for generating all of the yaml and check that 2 | # the rendering is correct 3 | 4 | metrics: 5 | enabled: true 6 | -------------------------------------------------------------------------------- /bitnami/wordpress/ci/values-metrics-and-ingress.yaml: -------------------------------------------------------------------------------- 1 | ingress: 2 | enabled: true 3 | tls: true 4 | 5 | service: 6 | type: ClusterIP 7 | 8 | metrics: 9 | enabled: true 10 | -------------------------------------------------------------------------------- /bitnami/mongodb/ci/values-replicaset-with-rbac.yaml: -------------------------------------------------------------------------------- 1 | architecture: replicaset 2 | replicaCount: 3 3 | pdb: 4 | create: true 5 | rbac: 6 | create: true 7 | serviceAccount: 8 | create: true 9 | -------------------------------------------------------------------------------- /bitnami/wildfly/ci/values-with-initcontainers.yaml: -------------------------------------------------------------------------------- 1 | # Test values file for generating all of the yaml and check that 2 | # the rendering is correct 3 | 4 | volumePermissions: 5 | enabled: true 6 | -------------------------------------------------------------------------------- /bitnami/kong/ci/values-external-postgresql.yaml: -------------------------------------------------------------------------------- 1 | database: postgresql 2 | 3 | postgresql: 4 | enabled: false 5 | external: 6 | host: test-postgresql 7 | user: test 8 | password: test 9 | -------------------------------------------------------------------------------- /bitnami/phpmyadmin/ci/metrics-and-ingress-values.yaml: -------------------------------------------------------------------------------- 1 | service: 2 | type: ClusterIP 3 | ingress: 4 | enabled: true 5 | tls: true 6 | hostname: phpmyadmin.local 7 | metrics: 8 | enabled: true 9 | -------------------------------------------------------------------------------- /bitnami/spark/ci/values-with-ingress-and-autoscaling.yaml: -------------------------------------------------------------------------------- 1 | # Test values file for generating all of the yaml and check that 2 | # the rendering is correct 3 | ingress: 4 | enabled: true 5 | 6 | worker: 7 | autoscaling: 8 | enabled: true 9 | -------------------------------------------------------------------------------- /bitnami/tomcat/ci/values-with-ingress-and-initcontainers.yaml: -------------------------------------------------------------------------------- 1 | # Test values file for generating all of the yaml and check that 2 | # the rendering is correct 3 | 4 | ingress: 5 | enabled: true 6 | 7 | volumePermissions: 8 | enabled: true 9 | -------------------------------------------------------------------------------- /bitnami/logstash/files/conf/README.md: -------------------------------------------------------------------------------- 1 | Place your Logstash configuration files here. This will not be used in case the value *existingConfiguration* is used. 2 | 3 | More information [here](https://github.com/bitnami/bitnami-docker-logstash#configuration) 4 | -------------------------------------------------------------------------------- /bitnami/node/ci/values-with-ingress-and-persistence.yaml: -------------------------------------------------------------------------------- 1 | ## Test values file for generating all of the yaml and check that 2 | ## the rendering is correct 3 | 4 | ingress: 5 | enabled: true 6 | tls: [] 7 | 8 | persistence: 9 | enabled: true 10 | -------------------------------------------------------------------------------- /bitnami/apache/Chart.lock: -------------------------------------------------------------------------------- 1 | dependencies: 2 | - name: common 3 | repository: https://charts.bitnami.com/bitnami 4 | version: 1.1.1 5 | digest: sha256:2d81f65661ede4b27144fa09f73db18cab9025d174ae0ba4e1fc3a1a60a7ba8e 6 | generated: "2020-12-09T14:39:03.659900001Z" 7 | -------------------------------------------------------------------------------- /bitnami/consul/Chart.lock: -------------------------------------------------------------------------------- 1 | dependencies: 2 | - name: common 3 | repository: https://charts.bitnami.com/bitnami 4 | version: 1.0.1 5 | digest: sha256:e66388f254b9de6470bca6d8c1c565d1c16a5569beef68a7bc99e486e73ccbdb 6 | generated: "2020-11-20T02:56:21.51697601Z" 7 | -------------------------------------------------------------------------------- /bitnami/etcd/Chart.lock: -------------------------------------------------------------------------------- 1 | dependencies: 2 | - name: common 3 | repository: https://charts.bitnami.com/bitnami 4 | version: 1.0.1 5 | digest: sha256:e66388f254b9de6470bca6d8c1c565d1c16a5569beef68a7bc99e486e73ccbdb 6 | generated: "2020-11-24T12:52:51.180468+01:00" 7 | -------------------------------------------------------------------------------- /bitnami/kiam/Chart.lock: -------------------------------------------------------------------------------- 1 | dependencies: 2 | - name: common 3 | repository: https://charts.bitnami.com/bitnami 4 | version: 1.0.0 5 | digest: sha256:a2093836b2b6a85d7bf34143d3159b5c413c5e7423bde212de9cb416c985b976 6 | generated: "2020-11-16T11:53:31.315224085Z" 7 | -------------------------------------------------------------------------------- /bitnami/kibana/Chart.lock: -------------------------------------------------------------------------------- 1 | dependencies: 2 | - name: common 3 | repository: https://charts.bitnami.com/bitnami 4 | version: 1.1.1 5 | digest: sha256:2d81f65661ede4b27144fa09f73db18cab9025d174ae0ba4e1fc3a1a60a7ba8e 6 | generated: "2020-12-09T22:58:10.065382638Z" 7 | -------------------------------------------------------------------------------- /bitnami/minio/Chart.lock: -------------------------------------------------------------------------------- 1 | dependencies: 2 | - name: common 3 | repository: https://charts.bitnami.com/bitnami 4 | version: 1.1.1 5 | digest: sha256:2d81f65661ede4b27144fa09f73db18cab9025d174ae0ba4e1fc3a1a60a7ba8e 6 | generated: "2020-12-04T20:41:02.853122372Z" 7 | -------------------------------------------------------------------------------- /bitnami/mysql/Chart.lock: -------------------------------------------------------------------------------- 1 | dependencies: 2 | - name: common 3 | repository: https://charts.bitnami.com/bitnami 4 | version: 1.1.1 5 | digest: sha256:2d81f65661ede4b27144fa09f73db18cab9025d174ae0ba4e1fc3a1a60a7ba8e 6 | generated: "2020-12-08T21:03:23.944912698Z" 7 | -------------------------------------------------------------------------------- /bitnami/nats/Chart.lock: -------------------------------------------------------------------------------- 1 | dependencies: 2 | - name: common 3 | repository: https://charts.bitnami.com/bitnami 4 | version: 1.1.1 5 | digest: sha256:2d81f65661ede4b27144fa09f73db18cab9025d174ae0ba4e1fc3a1a60a7ba8e 6 | generated: "2020-11-26T19:51:23.764557+01:00" 7 | -------------------------------------------------------------------------------- /bitnami/nginx/Chart.lock: -------------------------------------------------------------------------------- 1 | dependencies: 2 | - name: common 3 | repository: https://charts.bitnami.com/bitnami 4 | version: 1.0.1 5 | digest: sha256:e66388f254b9de6470bca6d8c1c565d1c16a5569beef68a7bc99e486e73ccbdb 6 | generated: "2020-11-24T17:01:38.761038074Z" 7 | -------------------------------------------------------------------------------- /bitnami/thanos/Chart.lock: -------------------------------------------------------------------------------- 1 | dependencies: 2 | - name: minio 3 | repository: https://charts.bitnami.com/bitnami 4 | version: 4.1.1 5 | digest: sha256:3868245e5c2b8ab1944efc80ffcf28587a81cdf77be9974d79ca77525f6ac300 6 | generated: "2020-12-08T12:22:13.427185638Z" 7 | -------------------------------------------------------------------------------- /bitnami/aspnet-core/Chart.lock: -------------------------------------------------------------------------------- 1 | dependencies: 2 | - name: common 3 | repository: https://charts.bitnami.com/bitnami 4 | version: 1.0.0 5 | digest: sha256:a2093836b2b6a85d7bf34143d3159b5c413c5e7423bde212de9cb416c985b976 6 | generated: "2020-11-10T23:37:41.220724642Z" 7 | -------------------------------------------------------------------------------- /bitnami/cassandra/Chart.lock: -------------------------------------------------------------------------------- 1 | dependencies: 2 | - name: common 3 | repository: https://charts.bitnami.com/bitnami 4 | version: 1.0.0 5 | digest: sha256:a2093836b2b6a85d7bf34143d3159b5c413c5e7423bde212de9cb416c985b976 6 | generated: "2020-11-10T23:08:33.476936043Z" 7 | -------------------------------------------------------------------------------- /bitnami/contour/Chart.lock: -------------------------------------------------------------------------------- 1 | dependencies: 2 | - name: common 3 | repository: https://charts.bitnami.com/bitnami 4 | version: 1.0.0 5 | digest: sha256:a2093836b2b6a85d7bf34143d3159b5c413c5e7423bde212de9cb416c985b976 6 | generated: "2020-11-10T23:42:14.691646871Z" 7 | -------------------------------------------------------------------------------- /bitnami/dokuwiki/Chart.lock: -------------------------------------------------------------------------------- 1 | dependencies: 2 | - name: common 3 | repository: https://charts.bitnami.com/bitnami 4 | version: 1.0.1 5 | digest: sha256:8113f0501b7501ad1095541806acefa715b2d689c9f858ecfc13c67825fdd872 6 | generated: "2020-11-23T23:47:13.532822163Z" 7 | -------------------------------------------------------------------------------- /bitnami/fluentd/Chart.lock: -------------------------------------------------------------------------------- 1 | dependencies: 2 | - name: common 3 | repository: https://charts.bitnami.com/bitnami 4 | version: 1.0.1 5 | digest: sha256:e66388f254b9de6470bca6d8c1c565d1c16a5569beef68a7bc99e486e73ccbdb 6 | generated: "2020-11-24T12:53:06.325901+01:00" 7 | -------------------------------------------------------------------------------- /bitnami/grafana/Chart.lock: -------------------------------------------------------------------------------- 1 | dependencies: 2 | - name: common 3 | repository: https://charts.bitnami.com/bitnami 4 | version: 1.1.1 5 | digest: sha256:2d81f65661ede4b27144fa09f73db18cab9025d174ae0ba4e1fc3a1a60a7ba8e 6 | generated: "2020-12-09T12:29:11.384952+01:00" 7 | -------------------------------------------------------------------------------- /bitnami/jenkins/Chart.lock: -------------------------------------------------------------------------------- 1 | dependencies: 2 | - name: common 3 | repository: https://charts.bitnami.com/bitnami 4 | version: 1.1.1 5 | digest: sha256:2d81f65661ede4b27144fa09f73db18cab9025d174ae0ba4e1fc3a1a60a7ba8e 6 | generated: "2020-11-29T19:44:15.634382+01:00" 7 | -------------------------------------------------------------------------------- /bitnami/kubewatch/Chart.lock: -------------------------------------------------------------------------------- 1 | dependencies: 2 | - name: common 3 | repository: https://charts.bitnami.com/bitnami 4 | version: 1.1.1 5 | digest: sha256:2d81f65661ede4b27144fa09f73db18cab9025d174ae0ba4e1fc3a1a60a7ba8e 6 | generated: "2020-12-09T16:44:47.136849551Z" 7 | -------------------------------------------------------------------------------- /bitnami/logstash/Chart.lock: -------------------------------------------------------------------------------- 1 | dependencies: 2 | - name: common 3 | repository: https://charts.bitnami.com/bitnami 4 | version: 1.1.1 5 | digest: sha256:2d81f65661ede4b27144fa09f73db18cab9025d174ae0ba4e1fc3a1a60a7ba8e 6 | generated: "2020-12-09T22:59:12.229961686Z" 7 | -------------------------------------------------------------------------------- /bitnami/mariadb/Chart.lock: -------------------------------------------------------------------------------- 1 | dependencies: 2 | - name: common 3 | repository: https://charts.bitnami.com/bitnami 4 | version: 1.1.1 5 | digest: sha256:2d81f65661ede4b27144fa09f73db18cab9025d174ae0ba4e1fc3a1a60a7ba8e 6 | generated: "2020-12-08T16:33:12.126243873Z" 7 | -------------------------------------------------------------------------------- /bitnami/memcached/Chart.lock: -------------------------------------------------------------------------------- 1 | dependencies: 2 | - name: common 3 | repository: https://charts.bitnami.com/bitnami 4 | version: 1.0.1 5 | digest: sha256:e66388f254b9de6470bca6d8c1c565d1c16a5569beef68a7bc99e486e73ccbdb 6 | generated: "2020-11-25T12:07:14.587843+01:00" 7 | -------------------------------------------------------------------------------- /bitnami/mongodb/Chart.lock: -------------------------------------------------------------------------------- 1 | dependencies: 2 | - name: common 3 | repository: https://charts.bitnami.com/bitnami 4 | version: 1.1.1 5 | digest: sha256:2d81f65661ede4b27144fa09f73db18cab9025d174ae0ba4e1fc3a1a60a7ba8e 6 | generated: "2020-11-26T18:30:32.557890359Z" 7 | -------------------------------------------------------------------------------- /bitnami/mxnet/Chart.lock: -------------------------------------------------------------------------------- 1 | dependencies: 2 | - name: common 3 | repository: https://charts.bitnami.com/bitnami 4 | version: 1.1.1 5 | digest: sha256:2d81f65661ede4b27144fa09f73db18cab9025d174ae0ba4e1fc3a1a60a7ba8e 6 | generated: "2020-12-09T16:14:39.468185+01:00" 7 | -------------------------------------------------------------------------------- /bitnami/osclass/Chart.lock: -------------------------------------------------------------------------------- 1 | dependencies: 2 | - name: mariadb 3 | repository: https://charts.bitnami.com/bitnami 4 | version: 9.0.1 5 | digest: sha256:6a5735e0b7e5868bbf3eec9d9d031eb20a5928dd38894899c5bccf2e8f7c5a61 6 | generated: "2020-11-13T10:04:16.639686339Z" 7 | -------------------------------------------------------------------------------- /bitnami/owncloud/Chart.lock: -------------------------------------------------------------------------------- 1 | dependencies: 2 | - name: mariadb 3 | repository: https://charts.bitnami.com/bitnami 4 | version: 9.0.1 5 | digest: sha256:6a5735e0b7e5868bbf3eec9d9d031eb20a5928dd38894899c5bccf2e8f7c5a61 6 | generated: "2020-11-18T12:07:23.518660856Z" 7 | -------------------------------------------------------------------------------- /bitnami/phabricator/Chart.lock: -------------------------------------------------------------------------------- 1 | dependencies: 2 | - name: mariadb 3 | repository: https://charts.bitnami.com/bitnami 4 | version: 9.0.1 5 | digest: sha256:6a5735e0b7e5868bbf3eec9d9d031eb20a5928dd38894899c5bccf2e8f7c5a61 6 | generated: "2020-11-18T14:19:46.39602979Z" 7 | -------------------------------------------------------------------------------- /bitnami/postgresql/Chart.lock: -------------------------------------------------------------------------------- 1 | dependencies: 2 | - name: common 3 | repository: https://charts.bitnami.com/bitnami 4 | version: 1.1.1 5 | digest: sha256:ad6046f2a1622d170c845325153551e3af6aee263e3d4621bfc20348f6394e78 6 | generated: "2020-12-04T16:16:14.668671686Z" 7 | -------------------------------------------------------------------------------- /bitnami/spark/Chart.lock: -------------------------------------------------------------------------------- 1 | dependencies: 2 | - name: common 3 | repository: https://charts.bitnami.com/bitnami 4 | version: 0.10.0 5 | digest: sha256:cbe8f782ad7168557b9bb101a4d441d3210e2dda09cd249eb8426d1499ce6afc 6 | generated: "2020-12-08T16:39:25.492992+01:00" 7 | -------------------------------------------------------------------------------- /bitnami/external-dns/Chart.lock: -------------------------------------------------------------------------------- 1 | dependencies: 2 | - name: common 3 | repository: https://charts.bitnami.com/bitnami 4 | version: 1.1.1 5 | digest: sha256:2d81f65661ede4b27144fa09f73db18cab9025d174ae0ba4e1fc3a1a60a7ba8e 6 | generated: "2020-12-07T16:34:44.8134807+02:00" 7 | -------------------------------------------------------------------------------- /bitnami/influxdb/Chart.lock: -------------------------------------------------------------------------------- 1 | dependencies: 2 | - name: common 3 | repository: https://charts.bitnami.com/bitnami 4 | version: 1.1.1 5 | digest: sha256:2d81f65661ede4b27144fa09f73db18cab9025d174ae0ba4e1fc3a1a60a7ba8e 6 | generated: "2020-12-05T11:59:31.722671416+03:00" 7 | -------------------------------------------------------------------------------- /bitnami/jasperreports/Chart.lock: -------------------------------------------------------------------------------- 1 | dependencies: 2 | - name: mariadb 3 | repository: https://charts.bitnami.com/bitnami 4 | version: 9.0.1 5 | digest: sha256:6a5735e0b7e5868bbf3eec9d9d031eb20a5928dd38894899c5bccf2e8f7c5a61 6 | generated: "2020-11-20T09:52:39.625467948Z" 7 | -------------------------------------------------------------------------------- /bitnami/kubeapps/Chart.lock: -------------------------------------------------------------------------------- 1 | dependencies: 2 | - name: postgresql 3 | repository: https://charts.bitnami.com/bitnami 4 | version: 10.0.0 5 | digest: sha256:f8c58847aa69098396a2c24071459d6da8790b499590ebee84cc3cbe25fe2167 6 | generated: "2020-11-18T15:24:50.839372537Z" 7 | -------------------------------------------------------------------------------- /bitnami/mariadb-galera/Chart.lock: -------------------------------------------------------------------------------- 1 | dependencies: 2 | - name: common 3 | repository: https://charts.bitnami.com/bitnami 4 | version: 1.0.1 5 | digest: sha256:e66388f254b9de6470bca6d8c1c565d1c16a5569beef68a7bc99e486e73ccbdb 6 | generated: "2020-11-25T11:29:05.260061+01:00" 7 | -------------------------------------------------------------------------------- /bitnami/metrics-server/Chart.lock: -------------------------------------------------------------------------------- 1 | dependencies: 2 | - name: common 3 | repository: https://charts.bitnami.com/bitnami 4 | version: 1.0.1 5 | digest: sha256:e66388f254b9de6470bca6d8c1c565d1c16a5569beef68a7bc99e486e73ccbdb 6 | generated: "2020-11-25T20:03:27.132535+01:00" 7 | -------------------------------------------------------------------------------- /bitnami/node-exporter/Chart.lock: -------------------------------------------------------------------------------- 1 | dependencies: 2 | - name: common 3 | repository: https://charts.bitnami.com/bitnami 4 | version: 1.1.1 5 | digest: sha256:2d81f65661ede4b27144fa09f73db18cab9025d174ae0ba4e1fc3a1a60a7ba8e 6 | generated: "2020-12-09T16:15:07.983788+01:00" 7 | -------------------------------------------------------------------------------- /bitnami/postgresql-ha/Chart.lock: -------------------------------------------------------------------------------- 1 | dependencies: 2 | - name: common 3 | repository: https://charts.bitnami.com/bitnami 4 | version: 1.1.1 5 | digest: sha256:ad6046f2a1622d170c845325153551e3af6aee263e3d4621bfc20348f6394e78 6 | generated: "2020-12-08T04:08:52.248608117Z" 7 | -------------------------------------------------------------------------------- /bitnami/rabbitmq/Chart.lock: -------------------------------------------------------------------------------- 1 | dependencies: 2 | - name: common 3 | repository: https://charts.bitnami.com/bitnami 4 | version: 1.1.1 5 | digest: sha256:2d81f65661ede4b27144fa09f73db18cab9025d174ae0ba4e1fc3a1a60a7ba8e 6 | generated: "2020-12-01T17:48:44.512479386+01:00" 7 | -------------------------------------------------------------------------------- /bitnami/redis-cluster/Chart.lock: -------------------------------------------------------------------------------- 1 | dependencies: 2 | - name: common 3 | repository: https://charts.bitnami.com/bitnami 4 | version: 1.0.0 5 | digest: sha256:a2093836b2b6a85d7bf34143d3159b5c413c5e7423bde212de9cb416c985b976 6 | generated: "2020-11-10T23:00:50.253890237Z" 7 | -------------------------------------------------------------------------------- /bitnami/kube-state-metrics/Chart.lock: -------------------------------------------------------------------------------- 1 | dependencies: 2 | - name: common 3 | repository: https://charts.bitnami.com/bitnami 4 | version: 1.0.1 5 | digest: sha256:e66388f254b9de6470bca6d8c1c565d1c16a5569beef68a7bc99e486e73ccbdb 6 | generated: "2020-11-24T15:39:05.841485+01:00" 7 | -------------------------------------------------------------------------------- /bitnami/mongodb-sharded/Chart.lock: -------------------------------------------------------------------------------- 1 | dependencies: 2 | - name: common 3 | repository: https://charts.bitnami.com/bitnami 4 | version: 1.0.1 5 | digest: sha256:e66388f254b9de6470bca6d8c1c565d1c16a5569beef68a7bc99e486e73ccbdb 6 | generated: "2020-11-26T10:27:28.274317+01:00" 7 | -------------------------------------------------------------------------------- /.github/ct-lint.yaml: -------------------------------------------------------------------------------- 1 | chart-dirs: 2 | - bitnami 3 | chart-repos: 4 | - bitnami=https://charts.bitnami.com/bitnami 5 | check-version-increment: true 6 | debug: true 7 | remote: origin 8 | validate-chart-schema: true 9 | validate-maintainers: true 10 | validate-yaml: true 11 | -------------------------------------------------------------------------------- /bitnami/kubernetes-event-exporter/Chart.lock: -------------------------------------------------------------------------------- 1 | dependencies: 2 | - name: common 3 | repository: https://charts.bitnami.com/bitnami 4 | version: 1.1.0 5 | digest: sha256:53383c55a80f2c6d7c546fc466879d53b57b35a3465d46429f7c8d0ccb5b977f 6 | generated: "2020-11-26T18:01:29.9979309Z" 7 | -------------------------------------------------------------------------------- /bitnami/nginx-ingress-controller/Chart.lock: -------------------------------------------------------------------------------- 1 | dependencies: 2 | - name: common 3 | repository: https://charts.bitnami.com/bitnami 4 | version: 1.1.1 5 | digest: sha256:2d81f65661ede4b27144fa09f73db18cab9025d174ae0ba4e1fc3a1a60a7ba8e 6 | generated: "2020-12-10T12:16:13.704672+01:00" 7 | -------------------------------------------------------------------------------- /bitnami/metrics-server/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- 1 | {{- if .Values.serviceAccount.create -}} 2 | apiVersion: v1 3 | kind: ServiceAccount 4 | metadata: 5 | name: {{ template "common.names.fullname" . }} 6 | labels: {{- include "common.labels.standard" . | nindent 4 }} 7 | {{- end -}} 8 | -------------------------------------------------------------------------------- /bitnami/kubeapps/templates/kubeops-serviceaccount.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: ServiceAccount 3 | metadata: 4 | name: {{ template "kubeapps.kubeops.fullname" . }} 5 | labels:{{ include "kubeapps.extraAppLabels" . | nindent 4 }} 6 | app: {{ template "kubeapps.kubeops.fullname" . }} 7 | -------------------------------------------------------------------------------- /bitnami/jenkins/ci/values-with-metrics-and-ingress.yaml: -------------------------------------------------------------------------------- 1 | # Test values file for generating all of the yaml and check that 2 | # the rendering is correct 3 | 4 | ingress: 5 | enabled: true 6 | tls: true 7 | 8 | service: 9 | type: ClusterIP 10 | 11 | metrics: 12 | enabled: true 13 | -------------------------------------------------------------------------------- /bitnami/mariadb-galera/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- 1 | {{- if .Values.serviceAccount.create }} 2 | apiVersion: v1 3 | kind: ServiceAccount 4 | metadata: 5 | name: {{ template "mariadb-galera.serviceAccountName" . }} 6 | labels: {{- include "common.labels.standard" . | nindent 4 }} 7 | {{- end }} 8 | -------------------------------------------------------------------------------- /bitnami/redis/ci/extra-flags-values.yaml: -------------------------------------------------------------------------------- 1 | master: 2 | extraFlags: 3 | - --maxmemory-policy allkeys-lru 4 | persistence: 5 | enabled: false 6 | slave: 7 | extraFlags: 8 | - --maxmemory-policy allkeys-lru 9 | persistence: 10 | enabled: false 11 | usePassword: false 12 | -------------------------------------------------------------------------------- /bitnami/logstash/ci/values-with-metrics-and-ingress.yaml: -------------------------------------------------------------------------------- 1 | # Test values file for generating all of the yaml and check that 2 | # the rendering is correct 3 | 4 | ingress: 5 | enabled: true 6 | tls: [] 7 | 8 | podDisruptionBudget: 9 | create: true 10 | 11 | metrics: 12 | enabled: true 13 | -------------------------------------------------------------------------------- /bitnami/mysql/files/docker-entrypoint-initdb.d/README.md: -------------------------------------------------------------------------------- 1 | You can copy here your custom .sh, .sql or .sql.gz file so they are executed during the first boot of the image. 2 | 3 | More info in the [bitnami-docker-mysql](https://github.com/bitnami/bitnami-docker-mysql#initializing-a-new-instance) repository. -------------------------------------------------------------------------------- /CHART_CATEGORIES: -------------------------------------------------------------------------------- 1 | Analytics 2 | ApplicationServer 3 | CMS 4 | CRM 5 | CertificateAuthority 6 | Database 7 | DeveloperTools 8 | Forum 9 | HumanResourceManagement 10 | Infrastructure 11 | LogManagement 12 | MachineLearning 13 | ProjectManagement 14 | Wiki 15 | WorkFlow 16 | E-Commerce 17 | E-Learning 18 | -------------------------------------------------------------------------------- /bitnami/influxdb/files/docker-entrypoint-initdb.d/README.md: -------------------------------------------------------------------------------- 1 | You can copy here your custom `.sh` or `.txt` files so they are executed during the first boot of the image. 2 | 3 | More info in the [bitnami-docker-influxdb](https://github.com/bitnami/bitnami-docker-influxdb#initializing-a-new-instance) repository. 4 | -------------------------------------------------------------------------------- /bitnami/kong/ci/values-external-cassandra.yaml: -------------------------------------------------------------------------------- 1 | database: cassandra 2 | 3 | postgresql: 4 | enabled: false 5 | cassandra: 6 | enabled: false 7 | external: 8 | hosts: 9 | - test-cassandra1 10 | - test-cassandra2 11 | - test-cassandra3 12 | user: test 13 | password: test 14 | -------------------------------------------------------------------------------- /bitnami/kubewatch/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | 2 | ** Please be patient while the chart is being deployed ** 3 | 4 | To verify that kubewatch has started, run: 5 | 6 | kubectl get deploy -w --namespace {{ .Release.Namespace }} {{ template "common.names.fullname" . }} 7 | 8 | {{- include "kubewatch.checkRollingTags" . }} 9 | -------------------------------------------------------------------------------- /bitnami/magento/ci/values-with-host-and-ingress.yaml: -------------------------------------------------------------------------------- 1 | magentoHost: magento.local 2 | service: 3 | type: ClusterIP 4 | ingress: 5 | enabled: true 6 | tls: true 7 | hostname: magento.local 8 | livenessProbe: 9 | httpGet: 10 | httpHeaders: [] 11 | readinessProbe: 12 | httpGet: 13 | httpHeaders: [] 14 | -------------------------------------------------------------------------------- /bitnami/postgresql/files/docker-entrypoint-initdb.d/README.md: -------------------------------------------------------------------------------- 1 | You can copy here your custom `.sh`, `.sql` or `.sql.gz` file so they are executed during the first boot of the image. 2 | 3 | More info in the [bitnami-docker-postgresql](https://github.com/bitnami/bitnami-docker-postgresql#initializing-a-new-instance) repository. -------------------------------------------------------------------------------- /bitnami/postgresql-ha/files/pgpool-entrypoint-initdb.d/README.md: -------------------------------------------------------------------------------- 1 | You can copy here your custom `.sh` file(s) so they are executed everytime Pgpool container is initialized 2 | 3 | More info in the [bitnami-docker-pgpool](https://github.com/bitnami/bitnami-docker-postgresql-repmgr#initializing-with-custom-scripts) repository. 4 | -------------------------------------------------------------------------------- /bitnami/pytorch/templates/configmap.yaml: -------------------------------------------------------------------------------- 1 | {{- if .Files.Glob "files/*" }} 2 | apiVersion: v1 3 | kind: ConfigMap 4 | metadata: 5 | name: {{ include "pytorch.fullname" . }}-files 6 | labels: {{- include "pytorch.labels" . | nindent 4 }} 7 | data: 8 | {{ (.Files.Glob "files/*").AsConfig | indent 2 }} 9 | {{ end }} 10 | -------------------------------------------------------------------------------- /bitnami/mariadb-galera/files/docker-entrypoint-initdb.d/README.md: -------------------------------------------------------------------------------- 1 | You can copy here your custom .sh, .sql or .sql.gz file so they are executed during the first boot of the image. 2 | 3 | More info in the [bitnami-docker-mariadb-galera](https://github.com/bitnami/bitnami-docker-mariadb-galera#initializing-a-new-instance) repository. 4 | -------------------------------------------------------------------------------- /bitnami/mediawiki/ci/values-with-host-and-ingress.yaml: -------------------------------------------------------------------------------- 1 | mediawikiHost: mediawiki.local 2 | service: 3 | type: ClusterIP 4 | ingress: 5 | enabled: true 6 | tls: true 7 | hostname: mediawiki.local 8 | livenessProbe: 9 | httpGet: 10 | httpHeaders: [] 11 | readinessProbe: 12 | httpGet: 13 | httpHeaders: [] 14 | -------------------------------------------------------------------------------- /bitnami/metrics-server/ci/values-with-rbac.yaml: -------------------------------------------------------------------------------- 1 | # Test values file for generating all of the yaml and check that 2 | # the rendering is correct 3 | 4 | rbac: 5 | create: true 6 | 7 | serviceAccount: 8 | create: true 9 | 10 | extraArgs: 11 | kubelet-insecure-tls: true 12 | kubelet-preferred-address-types: InternalIP 13 | -------------------------------------------------------------------------------- /bitnami/mxnet/templates/configmap.yaml: -------------------------------------------------------------------------------- 1 | {{- if .Files.Glob "files/*" }} 2 | apiVersion: v1 3 | kind: ConfigMap 4 | metadata: 5 | name: {{ include "common.names.fullname" . }}-files 6 | labels: {{- include "common.labels.standard" . | nindent 4 }} 7 | data: 8 | {{ (.Files.Glob "files/*").AsConfig | indent 2 }} 9 | {{- end }} 10 | -------------------------------------------------------------------------------- /bitnami/node-exporter/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- 1 | {{- if .Values.serviceAccount.create -}} 2 | apiVersion: v1 3 | kind: ServiceAccount 4 | metadata: 5 | name: {{ template "node-exporter.serviceAccountName" . }} 6 | namespace: {{ .Release.Namespace }} 7 | labels: {{- include "common.labels.standard" . | nindent 4 }} 8 | {{- end }} 9 | -------------------------------------------------------------------------------- /bitnami/wordpress/templates/configmap.yaml: -------------------------------------------------------------------------------- 1 | {{- if .Values.customPostInitScripts }} 2 | apiVersion: v1 3 | kind: ConfigMap 4 | metadata: 5 | name: {{ include "common.names.fullname" . }}-postinit 6 | data: 7 | {{- include "common.tplvalues.render" (dict "value" .Values.customPostInitScripts "context" $) | nindent 2 }} 8 | {{- end }} 9 | -------------------------------------------------------------------------------- /.github/ct-install.yaml: -------------------------------------------------------------------------------- 1 | chart-dirs: 2 | - bitnami 3 | chart-repos: 4 | - bitnami=https://charts.bitnami.com/bitnami 5 | debug: true 6 | excluded-charts: 7 | - common 8 | - kubeapps 9 | - kibana 10 | - kong 11 | - mariadb-galera 12 | - discourse 13 | - ejbca 14 | - wavefront 15 | - harbor 16 | remote: origin 17 | -------------------------------------------------------------------------------- /bitnami/postgresql-ha/files/docker-entrypoint-initdb.d/README.md: -------------------------------------------------------------------------------- 1 | You can copy here your custom `.sh`, `.sql` or `.sql.gz` file so they are executed during the first boot of the image. 2 | 3 | More info in the [bitnami-docker-postgresql-repmgr](https://github.com/bitnami/bitnami-docker-postgresql-repmgr#initializing-a-new-instance) repository. -------------------------------------------------------------------------------- /bitnami/kube-state-metrics/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- 1 | {{- if .Values.serviceAccount.create -}} 2 | apiVersion: v1 3 | kind: ServiceAccount 4 | metadata: 5 | name: {{ template "kube-state-metrics.serviceAccountName" . }} 6 | namespace: {{ .Release.Namespace }} 7 | labels: {{- include "common.labels.standard" . | nindent 4 }} 8 | {{- end }} 9 | -------------------------------------------------------------------------------- /bitnami/mxnet/ci/values-production.yaml: -------------------------------------------------------------------------------- 1 | # Test values file for generating all of the yaml and check that 2 | # the rendering is correct 3 | 4 | volumePermissions: 5 | enabled: true 6 | 7 | mode: distributed 8 | 9 | server: 10 | replicaCount: 2 11 | 12 | worker: 13 | replicaCount: 4 14 | 15 | persistence: 16 | enabled: true 17 | -------------------------------------------------------------------------------- /bitnami/elasticsearch/templates/configmap-es.yaml: -------------------------------------------------------------------------------- 1 | {{- if .Values.config }} 2 | apiVersion: v1 3 | kind: ConfigMap 4 | metadata: 5 | name: {{ include "elasticsearch.fullname" . }} 6 | labels: {{- include "elasticsearch.labels" . | nindent 4 }} 7 | data: 8 | elasticsearch.yml: |- {{- toYaml .Values.config | nindent 4 }} 9 | {{- end }} 10 | -------------------------------------------------------------------------------- /bitnami/harbor/ci/values-production.yaml: -------------------------------------------------------------------------------- 1 | # Test values file for generating all of the yaml and check that 2 | # the rendering is correct 3 | 4 | ingress: 5 | enabled: true 6 | 7 | volumePermissions: 8 | enabled: true 9 | 10 | internalTLS: 11 | enabled: true 12 | 13 | redis: 14 | enabled: true 15 | cluster: 16 | enabled: true 17 | -------------------------------------------------------------------------------- /bitnami/spark/templates/headless-svc.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: Service 3 | metadata: 4 | name: {{ template "common.names.fullname" . }}-headless 5 | labels: {{- include "common.labels.standard" . | nindent 4 }} 6 | spec: 7 | type: ClusterIP 8 | clusterIP: None 9 | selector: {{- include "common.labels.matchLabels" . | nindent 4 }} 10 | -------------------------------------------------------------------------------- /githooks/pre-commit/kubeapps: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | if git diff --name-only --cached | grep '/kubeapps/'; then 4 | printf '\n\U1F6AB Commit cancelled\n\nKubeapps changes detected in this repository.\nPlease, implement them in the kubeapps repository (https://github.com/kubeapps/kubeapps/tree/master/chart/kubeapps).\n' 5 | exit 1 6 | fi 7 | 8 | exit 0 9 | -------------------------------------------------------------------------------- /bitnami/magento/ci/values-production-with-host.yaml: -------------------------------------------------------------------------------- 1 | magentoHost: magento.local 2 | mariadb: 3 | enabled: false 4 | externalDatabase: 5 | host: database.local 6 | metrics: 7 | enabled: true 8 | ingress: 9 | enabled: true 10 | livenessProbe: 11 | httpGet: 12 | httpHeaders: [] 13 | readinessProbe: 14 | httpGet: 15 | httpHeaders: [] 16 | -------------------------------------------------------------------------------- /bitnami/drupal/Chart.lock: -------------------------------------------------------------------------------- 1 | dependencies: 2 | - name: mariadb 3 | repository: https://charts.bitnami.com/bitnami 4 | version: 9.0.1 5 | - name: common 6 | repository: https://charts.bitnami.com/bitnami 7 | version: 1.1.1 8 | digest: sha256:2cf593968d4011e82ddaa8edc88f5582d68bc7c7dad021fa366f6bea9931fff2 9 | generated: "2020-12-08T08:28:24.8124609Z" 10 | -------------------------------------------------------------------------------- /bitnami/ejbca/Chart.lock: -------------------------------------------------------------------------------- 1 | dependencies: 2 | - name: common 3 | repository: https://charts.bitnami.com/bitnami 4 | version: 1.0.0 5 | - name: mariadb 6 | repository: https://charts.bitnami.com/bitnami 7 | version: 9.0.1 8 | digest: sha256:fefc5ca7fcd02afaf7cdb1917350200c1b93d8d45ea5d19a73aea0671639cf54 9 | generated: "2020-11-12T07:16:27.40837395Z" 10 | -------------------------------------------------------------------------------- /bitnami/ghost/Chart.lock: -------------------------------------------------------------------------------- 1 | dependencies: 2 | - name: common 3 | repository: https://charts.bitnami.com/bitnami 4 | version: 1.1.1 5 | - name: mariadb 6 | repository: https://charts.bitnami.com/bitnami 7 | version: 9.0.1 8 | digest: sha256:9099307a2ebbd1113cc95d7f559c33f18a21007c83e9a39680fb8cd5f1971e27 9 | generated: "2020-11-27T11:37:08.155909526Z" 10 | -------------------------------------------------------------------------------- /bitnami/joomla/Chart.lock: -------------------------------------------------------------------------------- 1 | dependencies: 2 | - name: mariadb 3 | repository: https://charts.bitnami.com/bitnami 4 | version: 9.0.1 5 | - name: common 6 | repository: https://charts.bitnami.com/bitnami 7 | version: 1.0.1 8 | digest: sha256:7d78cbcd54bade2608462bb162c8487091689ff7f5cb65080a3d580dc6a24912 9 | generated: "2020-11-19T15:13:48.695523709Z" 10 | -------------------------------------------------------------------------------- /bitnami/kafka/Chart.lock: -------------------------------------------------------------------------------- 1 | dependencies: 2 | - name: common 3 | repository: https://charts.bitnami.com/bitnami 4 | version: 1.1.1 5 | - name: zookeeper 6 | repository: https://charts.bitnami.com/bitnami 7 | version: 6.0.0 8 | digest: sha256:d53dc1a2f9e9e509b8c15a4c4ecf0dee961ae7c6cb9a617816039ad38dd4f48b 9 | generated: "2020-12-09T12:15:11.557721022Z" 10 | -------------------------------------------------------------------------------- /bitnami/moodle/Chart.lock: -------------------------------------------------------------------------------- 1 | dependencies: 2 | - name: mariadb 3 | repository: https://charts.bitnami.com/bitnami 4 | version: 9.0.1 5 | - name: common 6 | repository: https://charts.bitnami.com/bitnami 7 | version: 1.0.0 8 | digest: sha256:27ce5c469bf919f37ff334b30b745ea0c60bfcf5d58eca9545e354b2aa27514a 9 | generated: "2020-11-12T07:14:12.401294492Z" 10 | -------------------------------------------------------------------------------- /bitnami/node/Chart.lock: -------------------------------------------------------------------------------- 1 | dependencies: 2 | - name: mongodb 3 | repository: https://charts.bitnami.com/bitnami 4 | version: 10.1.2 5 | - name: common 6 | repository: https://charts.bitnami.com/bitnami 7 | version: 1.1.1 8 | digest: sha256:a1fd20148eefe20d50c1db8c0115dbd433ffcfc52d900f1a9d99d042e30ccbee 9 | generated: "2020-11-26T19:33:30.383090632Z" 10 | -------------------------------------------------------------------------------- /bitnami/parse/Chart.lock: -------------------------------------------------------------------------------- 1 | dependencies: 2 | - name: mongodb 3 | repository: https://charts.bitnami.com/bitnami 4 | version: 10.1.2 5 | - name: common 6 | repository: https://charts.bitnami.com/bitnami 7 | version: 1.1.1 8 | digest: sha256:9eb29620e20671af05d7848d31801ba4ca7ae93435cc61e99ea7bc795aeaf56d 9 | generated: "2020-11-26T20:40:46.81438+01:00" 10 | -------------------------------------------------------------------------------- /bitnami/phpbb/Chart.lock: -------------------------------------------------------------------------------- 1 | dependencies: 2 | - name: mariadb 3 | repository: https://charts.bitnami.com/bitnami 4 | version: 9.0.1 5 | - name: common 6 | repository: https://charts.bitnami.com/bitnami 7 | version: 1.0.1 8 | digest: sha256:7d78cbcd54bade2608462bb162c8487091689ff7f5cb65080a3d580dc6a24912 9 | generated: "2020-11-19T15:27:05.051431097Z" 10 | -------------------------------------------------------------------------------- /template/CHART_NAME/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | %%Instructions to access the application depending on the serviceType and other considerations%% 2 | 3 | {{- include "common.warnings.rollingTag" .Values.%%MAIN_OBJECT_BLOCK%%.image }} 4 | {{- include "common.warnings.rollingTag" .Values.%%OTHER_OBJECT_BLOCK%%.image }} 5 | {{- include "%%TEMPLATE_NAME%%.validateValues" . }} 6 | -------------------------------------------------------------------------------- /bitnami/elasticsearch/Chart.lock: -------------------------------------------------------------------------------- 1 | dependencies: 2 | - name: common 3 | repository: https://charts.bitnami.com/bitnami 4 | version: 1.0.0 5 | - name: kibana 6 | repository: https://charts.bitnami.com/bitnami 7 | version: 6.0.1 8 | digest: sha256:c615f65b6ad8d323880c78936da085ca8cf0652002fe3975f723fbc99ca89e19 9 | generated: "2020-11-13T09:00:52.874863454Z" 10 | -------------------------------------------------------------------------------- /bitnami/keycloak/Chart.lock: -------------------------------------------------------------------------------- 1 | dependencies: 2 | - name: common 3 | repository: https://charts.bitnami.com/bitnami 4 | version: 1.1.1 5 | - name: postgresql 6 | repository: https://charts.bitnami.com/bitnami 7 | version: 10.1.1 8 | digest: sha256:249a03d86e619d48d5a4f00396dab9317f264c6871b10e36d03d92db331ad661 9 | generated: "2020-12-02T11:58:37.584241151Z" 10 | -------------------------------------------------------------------------------- /bitnami/mediawiki/Chart.lock: -------------------------------------------------------------------------------- 1 | dependencies: 2 | - name: common 3 | repository: https://charts.bitnami.com/bitnami 4 | version: 1.0.1 5 | - name: mariadb 6 | repository: https://charts.bitnami.com/bitnami 7 | version: 9.0.1 8 | digest: sha256:b653d41e8f9478c058c43749de2feee098dd0fa6baa6e55324f2dbecbeeca178 9 | generated: "2020-11-25T13:08:17.001911+01:00" 10 | -------------------------------------------------------------------------------- /bitnami/odoo/Chart.lock: -------------------------------------------------------------------------------- 1 | dependencies: 2 | - name: postgresql 3 | repository: https://charts.bitnami.com/bitnami 4 | version: 10.1.3 5 | - name: common 6 | repository: https://charts.bitnami.com/bitnami 7 | version: 1.1.1 8 | digest: sha256:5a82abc7f3d615f50c9c67c861209b9b77bb735c53e6e05c1d323c4884fc72e7 9 | generated: "2020-12-10T04:05:40.017091525Z" 10 | -------------------------------------------------------------------------------- /bitnami/opencart/Chart.lock: -------------------------------------------------------------------------------- 1 | dependencies: 2 | - name: mariadb 3 | repository: https://charts.bitnami.com/bitnami 4 | version: 9.0.1 5 | - name: common 6 | repository: https://charts.bitnami.com/bitnami 7 | version: 1.0.0 8 | digest: sha256:5da0c5d657ce8c316759a44f887b640ffb807d430036b83ab7f3e416fdf09a19 9 | generated: "2020-11-12T07:15:43.544610144Z" 10 | -------------------------------------------------------------------------------- /bitnami/phpmyadmin/Chart.lock: -------------------------------------------------------------------------------- 1 | dependencies: 2 | - name: common 3 | repository: https://charts.bitnami.com/bitnami 4 | version: 1.1.1 5 | - name: mariadb 6 | repository: https://charts.bitnami.com/bitnami 7 | version: 9.1.2 8 | digest: sha256:a2e41ea64175a575ec8ab0d6747231eba30ecb9e175564dfce42c6bad6fc77d7 9 | generated: "2020-12-09T16:14:58.723502+01:00" 10 | -------------------------------------------------------------------------------- /bitnami/prestashop/Chart.lock: -------------------------------------------------------------------------------- 1 | dependencies: 2 | - name: mariadb 3 | repository: https://charts.bitnami.com/bitnami 4 | version: 9.1.2 5 | - name: common 6 | repository: https://charts.bitnami.com/bitnami 7 | version: 1.1.1 8 | digest: sha256:906007a3aa36816f5766558b685a5d6985c8672778afca5a190b88326c66912a 9 | generated: "2020-12-10T14:24:02.199797567Z" 10 | -------------------------------------------------------------------------------- /bitnami/suitecrm/Chart.lock: -------------------------------------------------------------------------------- 1 | dependencies: 2 | - name: mariadb 3 | repository: https://charts.bitnami.com/bitnami 4 | version: 9.0.1 5 | - name: common 6 | repository: https://charts.bitnami.com/bitnami 7 | version: 1.0.1 8 | digest: sha256:42a375ccb9db642deaf46bd70b4496254d9915285a804f77a0510aea63716ee7 9 | generated: "2020-11-20T08:32:22.648398545Z" 10 | -------------------------------------------------------------------------------- /bitnami/testlink/Chart.lock: -------------------------------------------------------------------------------- 1 | dependencies: 2 | - name: mariadb 3 | repository: https://charts.bitnami.com/bitnami 4 | version: 9.0.0 5 | - name: common 6 | repository: https://charts.bitnami.com/bitnami 7 | version: 1.0.0 8 | digest: sha256:15fe4b2dd0a14e80e43e1a9f6dd23e0cbbe47549f709fc4f69f880e953f26184 9 | generated: "2020-11-11T18:37:17.051375057Z" 10 | -------------------------------------------------------------------------------- /bitnami/wordpress/Chart.lock: -------------------------------------------------------------------------------- 1 | dependencies: 2 | - name: mariadb 3 | repository: https://charts.bitnami.com/bitnami 4 | version: 9.1.2 5 | - name: common 6 | repository: https://charts.bitnami.com/bitnami 7 | version: 1.1.1 8 | digest: sha256:906007a3aa36816f5766558b685a5d6985c8672778afca5a190b88326c66912a 9 | generated: "2020-12-10T14:55:05.613288218Z" 10 | -------------------------------------------------------------------------------- /bitnami/memcached/templates/secrets.yaml: -------------------------------------------------------------------------------- 1 | {{- if .Values.memcachedPassword }} 2 | apiVersion: v1 3 | kind: Secret 4 | metadata: 5 | name: {{ template "common.names.fullname" . }} 6 | labels: {{- include "common.labels.standard" . | nindent 4 }} 7 | type: Opaque 8 | data: 9 | memcached-password: {{ .Values.memcachedPassword | b64enc | quote }} 10 | {{- end }} 11 | -------------------------------------------------------------------------------- /bitnami/orangehrm/Chart.lock: -------------------------------------------------------------------------------- 1 | dependencies: 2 | - name: mariadb 3 | repository: https://charts.bitnami.com/bitnami 4 | version: 9.0.1 5 | - name: common 6 | repository: https://charts.bitnami.com/bitnami 7 | version: 1.1.1 8 | digest: sha256:2cf593968d4011e82ddaa8edc88f5582d68bc7c7dad021fa366f6bea9931fff2 9 | generated: "2020-12-02T20:59:02.444187119+01:00" 10 | -------------------------------------------------------------------------------- /bitnami/apache/templates/configmap.yaml: -------------------------------------------------------------------------------- 1 | {{ if and (.Files.Glob "files/httpd.conf") (not .Values.httpdConfConfigMap) }} 2 | apiVersion: v1 3 | kind: ConfigMap 4 | metadata: 5 | name: {{ include "apache.fullname" . }}-httpd-conf 6 | labels: {{- include "apache.labels" . | nindent 4 }} 7 | data: 8 | {{ (.Files.Glob "files/httpd.conf").AsConfig | indent 2 }} 9 | {{ end }} 10 | -------------------------------------------------------------------------------- /bitnami/wavefront/Chart.lock: -------------------------------------------------------------------------------- 1 | dependencies: 2 | - name: common 3 | repository: https://charts.bitnami.com/bitnami 4 | version: 1.0.1 5 | - name: kube-state-metrics 6 | repository: https://charts.bitnami.com/bitnami 7 | version: 1.0.0 8 | digest: sha256:84b6b16e3ae4a54b7fbc3b27df98a2b27482dec2d6c3440af1ce162d35d6e72b 9 | generated: "2020-11-25T00:41:16.881804027Z" 10 | -------------------------------------------------------------------------------- /bitnami/contour/templates/envoy/serviceaccount.yaml: -------------------------------------------------------------------------------- 1 | {{- if and .Values.envoy.serviceAccount.create .Values.envoy.enabled }} 2 | --- 3 | apiVersion: v1 4 | kind: ServiceAccount 5 | metadata: 6 | name: {{ include "envoy.envoyServiceAccountName" . }} 7 | labels: {{- include "common.labels.standard" . | nindent 4 }} 8 | app.kubernetes.io/component: envoy 9 | {{- end }} 10 | -------------------------------------------------------------------------------- /bitnami/kubeapps/crds/apprepository-crd.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: apiextensions.k8s.io/v1beta1 2 | kind: CustomResourceDefinition 3 | metadata: 4 | name: apprepositories.kubeapps.com 5 | spec: 6 | group: kubeapps.com 7 | scope: Namespaced 8 | names: 9 | kind: AppRepository 10 | plural: apprepositories 11 | shortNames: 12 | - apprepos 13 | version: v1alpha1 14 | -------------------------------------------------------------------------------- /bitnami/apache/templates/configmap-vhosts.yaml: -------------------------------------------------------------------------------- 1 | {{- if and (.Files.Glob "files/vhosts/*.conf") (not .Values.vhostsConfigMap) }} 2 | apiVersion: v1 3 | kind: ConfigMap 4 | metadata: 5 | name: {{ include "apache.fullname" . }}-vhosts 6 | labels: {{- include "apache.labels" . | nindent 4 }} 7 | data: 8 | {{ (.Files.Glob "files/vhosts/*.conf").AsConfig | indent 2 }} 9 | {{ end }} 10 | -------------------------------------------------------------------------------- /bitnami/metallb/templates/configmap.yaml: -------------------------------------------------------------------------------- 1 | {{- if not .Values.existingConfigMap }} 2 | apiVersion: v1 3 | kind: ConfigMap 4 | metadata: 5 | name: {{ include "metallb.configMapName" . }} 6 | labels: {{- include "metallb.labels" . | nindent 4}} 7 | data: 8 | config: | 9 | {{ include "metallb.tplValue" ( dict "value" .Values.configInline "context" $) | indent 4 }} 10 | {{- end }} 11 | -------------------------------------------------------------------------------- /bitnami/parse/files/cloud/README.md: -------------------------------------------------------------------------------- 1 | Place your Cloud Code scripts here. This will not be used in case the value *server.existingCloudCodeScriptsCM* is used. 2 | 3 | More information can be found in the link below: 4 | 5 | - [How to deploy your Cloud functions with Parse Cloud Code?](https://github.com/bitnami/bitnami-docker-parse#how-to-deploy-your-cloud-functions-with-parse-cloud-code) 6 | -------------------------------------------------------------------------------- /bitnami/contour/templates/contour/serviceaccount.yaml: -------------------------------------------------------------------------------- 1 | {{- if and .Values.contour.serviceAccount.create .Values.contour.enabled }} 2 | --- 3 | apiVersion: v1 4 | kind: ServiceAccount 5 | metadata: 6 | name: {{ include "contour.contourServiceAccountName" . }} 7 | labels: {{- include "common.labels.standard" . | nindent 4 }} 8 | app.kubernetes.io/component: contour 9 | {{- end }} 10 | -------------------------------------------------------------------------------- /bitnami/drupal/templates/externaldb-secrets.yaml: -------------------------------------------------------------------------------- 1 | {{- if not .Values.mariadb.enabled }} 2 | apiVersion: v1 3 | kind: Secret 4 | metadata: 5 | name: "{{ include "common.names.fullname" . }}-externaldb" 6 | labels: {{- include "common.labels.standard" . | nindent 4 }} 7 | type: Opaque 8 | data: 9 | db-password: {{ default "" .Values.externalDatabase.password | b64enc | quote }} 10 | {{- end }} 11 | -------------------------------------------------------------------------------- /bitnami/minio/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- 1 | {{- if .Values.serviceAccount.create }} 2 | apiVersion: v1 3 | kind: ServiceAccount 4 | metadata: 5 | name: {{ template "minio.serviceAccountName" . }} 6 | namespace: {{ .Release.Namespace | quote }} 7 | labels: {{- include "common.labels.standard" . | nindent 4 }} 8 | secrets: 9 | - name: {{ include "common.names.fullname" . }} 10 | {{- end }} 11 | -------------------------------------------------------------------------------- /bitnami/nginx-ingress-controller/ci/values-production-with-psp.yaml: -------------------------------------------------------------------------------- 1 | # Test values file for generating all of the yaml and check that 2 | # the rendering is correct 3 | 4 | kind: DaemonSet 5 | 6 | podSecurityPolicy: 7 | enabled: true 8 | 9 | metrics: 10 | enabled: true 11 | ## Kubeval doesn't recognise ServiceMonitor as a valid K8s object 12 | # serviceMonitor: 13 | # enabled: true 14 | -------------------------------------------------------------------------------- /bitnami/kubeapps/templates/tls-secrets.yaml: -------------------------------------------------------------------------------- 1 | {{- if .Values.ingress.enabled }} 2 | {{- range .Values.ingress.secrets }} 3 | apiVersion: v1 4 | kind: Secret 5 | metadata: 6 | name: {{ .name }} 7 | labels: {{ include "kubeapps.labels" $ | nindent 4 }} 8 | type: kubernetes.io/tls 9 | data: 10 | tls.crt: {{ .certificate | b64enc }} 11 | tls.key: {{ .key | b64enc }} 12 | {{- end }} 13 | {{- end }} 14 | -------------------------------------------------------------------------------- /bitnami/mongodb/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- 1 | {{- if .Values.serviceAccount.create }} 2 | apiVersion: v1 3 | kind: ServiceAccount 4 | metadata: 5 | name: {{ include "mongodb.serviceAccountName" . }} 6 | namespace: {{ include "mongodb.namespace" . }} 7 | labels: {{- include "common.labels.standard" . | nindent 4 }} 8 | secrets: 9 | - name: {{ template "mongodb.fullname" . }} 10 | {{- end }} 11 | -------------------------------------------------------------------------------- /bitnami/moodle/templates/externaldb-secrets.yaml: -------------------------------------------------------------------------------- 1 | {{- if not .Values.mariadb.enabled }} 2 | apiVersion: v1 3 | kind: Secret 4 | metadata: 5 | name: "{{ include "common.names.fullname" . }}-externaldb" 6 | labels: {{- include "common.labels.standard" . | nindent 4 }} 7 | type: Opaque 8 | data: 9 | mariadb-password: {{ default "" .Values.externalDatabase.password | b64enc | quote }} 10 | {{- end }} 11 | -------------------------------------------------------------------------------- /bitnami/orangehrm/templates/externaldb-secrets.yaml: -------------------------------------------------------------------------------- 1 | {{- if not .Values.mariadb.enabled }} 2 | apiVersion: v1 3 | kind: Secret 4 | metadata: 5 | name: "{{ include "common.names.fullname" . }}-externaldb" 6 | labels: {{- include "common.labels.standard" . | nindent 4 }} 7 | type: Opaque 8 | data: 9 | db-password: {{ default "" .Values.externalDatabase.password | b64enc | quote }} 10 | {{- end }} 11 | -------------------------------------------------------------------------------- /bitnami/prestashop/templates/externaldb-secrets.yaml: -------------------------------------------------------------------------------- 1 | {{- if not .Values.mariadb.enabled }} 2 | apiVersion: v1 3 | kind: Secret 4 | metadata: 5 | name: "{{ include "common.names.fullname" . }}-externaldb" 6 | labels: {{- include "common.labels.standard" . | nindent 4 }} 7 | type: Opaque 8 | data: 9 | db-password: {{ default "" .Values.externalDatabase.password | b64enc | quote }} 10 | {{- end }} 11 | -------------------------------------------------------------------------------- /bitnami/testlink/templates/externaldb-secrets.yaml: -------------------------------------------------------------------------------- 1 | {{- if not .Values.mariadb.enabled }} 2 | apiVersion: v1 3 | kind: Secret 4 | metadata: 5 | name: "{{ include "common.names.fullname" . }}-externaldb" 6 | labels: {{- include "common.labels.standard" . | nindent 4 }} 7 | type: Opaque 8 | data: 9 | db-password: {{ default "" .Values.externalDatabase.password | b64enc | quote }} 10 | {{- end }} 11 | -------------------------------------------------------------------------------- /bitnami/elasticsearch/templates/configmap-initscripts.yaml: -------------------------------------------------------------------------------- 1 | {{- if .Values.initScripts }} 2 | apiVersion: v1 3 | kind: ConfigMap 4 | metadata: 5 | name: {{ template "elasticsearch.fullname" . }}-init-scripts 6 | labels: {{- include "elasticsearch.labels" . | nindent 4 }} 7 | component: master 8 | data: 9 | {{- with .Values.initScripts }} 10 | {{ toYaml . | indent 2 }} 11 | {{- end }} 12 | {{ end }} 13 | -------------------------------------------------------------------------------- /bitnami/mxnet/templates/headless-svc.yaml: -------------------------------------------------------------------------------- 1 | {{- if eq .Values.mode "distributed" }} 2 | apiVersion: v1 3 | kind: Service 4 | metadata: 5 | name: {{ include "common.names.fullname" . }}-headless 6 | labels: {{- include "common.labels.standard" . | nindent 4 }} 7 | spec: 8 | type: ClusterIP 9 | clusterIP: None 10 | selector: {{- include "common.labels.matchLabels" . | nindent 4 }} 11 | {{- end }} 12 | -------------------------------------------------------------------------------- /bitnami/opencart/templates/externaldb-secrets.yaml: -------------------------------------------------------------------------------- 1 | {{- if not .Values.mariadb.enabled }} 2 | apiVersion: v1 3 | kind: Secret 4 | metadata: 5 | name: "{{ include "common.names.fullname" . }}-externaldb" 6 | labels: {{- include "common.labels.standard" . | nindent 4 }} 7 | type: Opaque 8 | data: 9 | mariadb-password: {{ default "" .Values.externalDatabase.password | b64enc | quote }} 10 | {{- end }} 11 | -------------------------------------------------------------------------------- /bitnami/rabbitmq/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- 1 | {{- if .Values.serviceAccount.create }} 2 | apiVersion: v1 3 | kind: ServiceAccount 4 | metadata: 5 | name: {{ include "rabbitmq.serviceAccountName" . }} 6 | namespace: {{ .Release.Namespace | quote }} 7 | labels: {{- include "common.labels.standard" . | nindent 4 }} 8 | secrets: 9 | - name: {{ include "rabbitmq.fullname" . }} 10 | {{- end }} 11 | 12 | -------------------------------------------------------------------------------- /bitnami/external-dns/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | ** Please be patient while the chart is being deployed ** 2 | 3 | To verify that external-dns has started, run: 4 | 5 | kubectl --namespace={{ .Release.Namespace }} get pods -l "app.kubernetes.io/name={{ template "external-dns.name" . }},app.kubernetes.io/instance={{ .Release.Name }}" 6 | 7 | {{ include "external-dns.validateValues" . }} 8 | {{ include "external-dns.checkRollingTags" . }} 9 | -------------------------------------------------------------------------------- /bitnami/external-dns/templates/configmap.yaml: -------------------------------------------------------------------------------- 1 | {{- if and (eq .Values.provider "designate") .Values.designate.customCA.enabled }} 2 | apiVersion: v1 3 | kind: ConfigMap 4 | metadata: 5 | name: {{ template "external-dns.fullname" . }} 6 | labels: {{ include "external-dns.labels" . | nindent 4 }} 7 | data: 8 | {{ .Values.designate.customCA.filename }}: | 9 | {{ .Values.designate.customCA.content | indent 4 }} 10 | {{- end }} 11 | -------------------------------------------------------------------------------- /bitnami/thanos/ci/values-with-ingress-and-metrics.yaml: -------------------------------------------------------------------------------- 1 | # Test values file for generating all of the yaml and check that 2 | # the rendering is correct 3 | 4 | ingress: 5 | enabled: true 6 | 7 | metrics: 8 | enabled: true 9 | serviceMonitor: 10 | ## Enable only if you previously installed the Prometheus Operator 11 | ## in your cluster 12 | enabled: true 13 | labels: 14 | release: prometheus-operator 15 | -------------------------------------------------------------------------------- /bitnami/external-dns/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- 1 | {{- if .Values.serviceAccount.create -}} 2 | apiVersion: v1 3 | kind: ServiceAccount 4 | metadata: 5 | name: {{ template "external-dns.serviceAccountName" . }} 6 | labels: {{ include "external-dns.labels" . | nindent 4 }} 7 | {{- if .Values.serviceAccount.annotations }} 8 | annotations: {{ toYaml .Values.serviceAccount.annotations | nindent 4 }} 9 | {{- end }} 10 | {{- end }} 11 | -------------------------------------------------------------------------------- /bitnami/mariadb-galera/templates/role.yaml: -------------------------------------------------------------------------------- 1 | {{- if and .Values.serviceAccount.create .Values.rbac.create }} 2 | apiVersion: rbac.authorization.k8s.io/v1 3 | kind: Role 4 | metadata: 5 | name: {{ template "common.names.fullname" . }} 6 | labels: {{- include "common.labels.standard" . | nindent 4 }} 7 | rules: 8 | - apiGroups: 9 | - "" 10 | resources: 11 | - endpoints 12 | verbs: 13 | - get 14 | {{- end }} 15 | -------------------------------------------------------------------------------- /bitnami/tomcat/templates/secrets.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: Secret 3 | metadata: 4 | name: {{ template "tomcat.fullname" . }} 5 | labels: {{- include "tomcat.labels" . | nindent 4 }} 6 | type: Opaque 7 | data: 8 | {{- if .Values.tomcatPassword }} 9 | tomcat-password: {{ default "" .Values.tomcatPassword | b64enc | quote }} 10 | {{- else }} 11 | tomcat-password: {{ randAlphaNum 10 | b64enc | quote }} 12 | {{- end }} 13 | -------------------------------------------------------------------------------- /bitnami/wildfly/templates/secrets.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: Secret 3 | metadata: 4 | name: {{ template "wildfly.fullname" . }} 5 | labels: {{- include "wildfly.labels" . | nindent 4 }} 6 | type: Opaque 7 | data: 8 | {{- if .Values.wildflyPassword }} 9 | wildfly-password: {{ default "" .Values.wildflyPassword | b64enc | quote }} 10 | {{- else }} 11 | wildfly-password: {{ randAlphaNum 10 | b64enc | quote }} 12 | {{- end }} 13 | -------------------------------------------------------------------------------- /bitnami/etcd/.helmignore: -------------------------------------------------------------------------------- 1 | # Patterns to ignore when building packages. 2 | # This supports shell glob matching, relative path matching, and 3 | # negation (prefixed with !). Only one pattern per line. 4 | .DS_Store 5 | # Common VCS dirs 6 | .git/ 7 | .gitignore 8 | .bzr/ 9 | .bzrignore 10 | .hg/ 11 | .hgignore 12 | .svn/ 13 | # Common backup files 14 | *.swp 15 | *.bak 16 | *.tmp 17 | *~ 18 | # Various IDEs 19 | .project 20 | .idea/ 21 | *.tmproj 22 | -------------------------------------------------------------------------------- /bitnami/kiam/.helmignore: -------------------------------------------------------------------------------- 1 | # Patterns to ignore when building packages. 2 | # This supports shell glob matching, relative path matching, and 3 | # negation (prefixed with !). Only one pattern per line. 4 | .DS_Store 5 | # Common VCS dirs 6 | .git/ 7 | .gitignore 8 | .bzr/ 9 | .bzrignore 10 | .hg/ 11 | .hgignore 12 | .svn/ 13 | # Common backup files 14 | *.swp 15 | *.bak 16 | *.tmp 17 | *~ 18 | # Various IDEs 19 | .project 20 | .idea/ 21 | *.tmproj 22 | -------------------------------------------------------------------------------- /bitnami/kong/.helmignore: -------------------------------------------------------------------------------- 1 | # Patterns to ignore when building packages. 2 | # This supports shell glob matching, relative path matching, and 3 | # negation (prefixed with !). Only one pattern per line. 4 | .DS_Store 5 | # Common VCS dirs 6 | .git/ 7 | .gitignore 8 | .bzr/ 9 | .bzrignore 10 | .hg/ 11 | .hgignore 12 | .svn/ 13 | # Common backup files 14 | *.swp 15 | *.bak 16 | *.tmp 17 | *~ 18 | # Various IDEs 19 | .project 20 | .idea/ 21 | *.tmproj 22 | -------------------------------------------------------------------------------- /bitnami/nats/.helmignore: -------------------------------------------------------------------------------- 1 | # Patterns to ignore when building packages. 2 | # This supports shell glob matching, relative path matching, and 3 | # negation (prefixed with !). Only one pattern per line. 4 | .DS_Store 5 | # Common VCS dirs 6 | .git/ 7 | .gitignore 8 | .bzr/ 9 | .bzrignore 10 | .hg/ 11 | .hgignore 12 | .svn/ 13 | # Common backup files 14 | *.swp 15 | *.bak 16 | *.tmp 17 | *~ 18 | # Various IDEs 19 | .project 20 | .idea/ 21 | *.tmproj 22 | -------------------------------------------------------------------------------- /bitnami/node/.helmignore: -------------------------------------------------------------------------------- 1 | # Patterns to ignore when building packages. 2 | # This supports shell glob matching, relative path matching, and 3 | # negation (prefixed with !). Only one pattern per line. 4 | .DS_Store 5 | # Common VCS dirs 6 | .git/ 7 | .gitignore 8 | .bzr/ 9 | .bzrignore 10 | .hg/ 11 | .hgignore 12 | .svn/ 13 | # Common backup files 14 | *.swp 15 | *.bak 16 | *.tmp 17 | *~ 18 | # Various IDEs 19 | .project 20 | .idea/ 21 | *.tmproj 22 | -------------------------------------------------------------------------------- /bitnami/odoo/.helmignore: -------------------------------------------------------------------------------- 1 | # Patterns to ignore when building packages. 2 | # This supports shell glob matching, relative path matching, and 3 | # negation (prefixed with !). Only one pattern per line. 4 | .DS_Store 5 | # Common VCS dirs 6 | .git/ 7 | .gitignore 8 | .bzr/ 9 | .bzrignore 10 | .hg/ 11 | .hgignore 12 | .svn/ 13 | # Common backup files 14 | *.swp 15 | *.bak 16 | *.tmp 17 | *~ 18 | # Various IDEs 19 | .project 20 | .idea/ 21 | *.tmproj 22 | -------------------------------------------------------------------------------- /bitnami/phabricator/templates/externaldb-secrets.yaml: -------------------------------------------------------------------------------- 1 | {{- if (not (or .Values.mariadb.enabled .Values.externalDatabase.existingSecret)) }} 2 | apiVersion: v1 3 | kind: Secret 4 | metadata: 5 | name: {{ printf "%s-%s" .Release.Name "externaldb" }} 6 | labels: {{- include "phabricator.labels" . | nindent 4 }} 7 | type: Opaque 8 | data: 9 | mariadb-root-password: {{ .Values.externalDatabase.rootPassword | b64enc | quote }} 10 | {{- end }} 11 | -------------------------------------------------------------------------------- /bitnami/airflow/.helmignore: -------------------------------------------------------------------------------- 1 | # Patterns to ignore when building packages. 2 | # This supports shell glob matching, relative path matching, and 3 | # negation (prefixed with !). Only one pattern per line. 4 | .DS_Store 5 | # Common VCS dirs 6 | .git/ 7 | .gitignore 8 | .bzr/ 9 | .bzrignore 10 | .hg/ 11 | .hgignore 12 | .svn/ 13 | # Common backup files 14 | *.swp 15 | *.bak 16 | *.tmp 17 | *~ 18 | # Various IDEs 19 | .project 20 | .idea/ 21 | *.tmproj 22 | -------------------------------------------------------------------------------- /bitnami/apache/.helmignore: -------------------------------------------------------------------------------- 1 | # Patterns to ignore when building packages. 2 | # This supports shell glob matching, relative path matching, and 3 | # negation (prefixed with !). Only one pattern per line. 4 | .DS_Store 5 | # Common VCS dirs 6 | .git/ 7 | .gitignore 8 | .bzr/ 9 | .bzrignore 10 | .hg/ 11 | .hgignore 12 | .svn/ 13 | # Common backup files 14 | *.swp 15 | *.bak 16 | *.tmp 17 | *~ 18 | # Various IDEs 19 | .project 20 | .idea/ 21 | *.tmproj 22 | -------------------------------------------------------------------------------- /bitnami/cassandra/.helmignore: -------------------------------------------------------------------------------- 1 | # Patterns to ignore when building packages. 2 | # This supports shell glob matching, relative path matching, and 3 | # negation (prefixed with !). Only one pattern per line. 4 | .DS_Store 5 | # Common VCS dirs 6 | .git/ 7 | .gitignore 8 | .bzr/ 9 | .bzrignore 10 | .hg/ 11 | .hgignore 12 | .svn/ 13 | # Common backup files 14 | *.swp 15 | *.bak 16 | *.tmp 17 | *~ 18 | # Various IDEs 19 | .project 20 | .idea/ 21 | *.tmproj 22 | -------------------------------------------------------------------------------- /bitnami/consul/.helmignore: -------------------------------------------------------------------------------- 1 | # Patterns to ignore when building packages. 2 | # This supports shell glob matching, relative path matching, and 3 | # negation (prefixed with !). Only one pattern per line. 4 | .DS_Store 5 | # Common VCS dirs 6 | .git/ 7 | .gitignore 8 | .bzr/ 9 | .bzrignore 10 | .hg/ 11 | .hgignore 12 | .svn/ 13 | # Common backup files 14 | *.swp 15 | *.bak 16 | *.tmp 17 | *~ 18 | # Various IDEs 19 | .project 20 | .idea/ 21 | *.tmproj 22 | -------------------------------------------------------------------------------- /bitnami/dokuwiki/.helmignore: -------------------------------------------------------------------------------- 1 | # Patterns to ignore when building packages. 2 | # This supports shell glob matching, relative path matching, and 3 | # negation (prefixed with !). Only one pattern per line. 4 | .DS_Store 5 | # Common VCS dirs 6 | .git/ 7 | .gitignore 8 | .bzr/ 9 | .bzrignore 10 | .hg/ 11 | .hgignore 12 | .svn/ 13 | # Common backup files 14 | *.swp 15 | *.bak 16 | *.tmp 17 | *~ 18 | # Various IDEs 19 | .project 20 | .idea/ 21 | *.tmproj 22 | -------------------------------------------------------------------------------- /bitnami/drupal/.helmignore: -------------------------------------------------------------------------------- 1 | # Patterns to ignore when building packages. 2 | # This supports shell glob matching, relative path matching, and 3 | # negation (prefixed with !). Only one pattern per line. 4 | .DS_Store 5 | # Common VCS dirs 6 | .git/ 7 | .gitignore 8 | .bzr/ 9 | .bzrignore 10 | .hg/ 11 | .hgignore 12 | .svn/ 13 | # Common backup files 14 | *.swp 15 | *.bak 16 | *.tmp 17 | *~ 18 | # Various IDEs 19 | .project 20 | .idea/ 21 | *.tmproj 22 | -------------------------------------------------------------------------------- /bitnami/ejbca/.helmignore: -------------------------------------------------------------------------------- 1 | # Patterns to ignore when building packages. 2 | # This supports shell glob matching, relative path matching, and 3 | # negation (prefixed with !). Only one pattern per line. 4 | .DS_Store 5 | # Common VCS dirs 6 | .git/ 7 | .gitignore 8 | .bzr/ 9 | .bzrignore 10 | .hg/ 11 | .hgignore 12 | .svn/ 13 | # Common backup files 14 | *.swp 15 | *.bak 16 | *.tmp 17 | *~ 18 | # Various IDEs 19 | .project 20 | .idea/ 21 | *.tmproj 22 | -------------------------------------------------------------------------------- /bitnami/fluentd/.helmignore: -------------------------------------------------------------------------------- 1 | # Patterns to ignore when building packages. 2 | # This supports shell glob matching, relative path matching, and 3 | # negation (prefixed with !). Only one pattern per line. 4 | .DS_Store 5 | # Common VCS dirs 6 | .git/ 7 | .gitignore 8 | .bzr/ 9 | .bzrignore 10 | .hg/ 11 | .hgignore 12 | .svn/ 13 | # Common backup files 14 | *.swp 15 | *.bak 16 | *.tmp 17 | *~ 18 | # Various IDEs 19 | .project 20 | .idea/ 21 | *.tmproj 22 | -------------------------------------------------------------------------------- /bitnami/ghost/.helmignore: -------------------------------------------------------------------------------- 1 | # Patterns to ignore when building packages. 2 | # This supports shell glob matching, relative path matching, and 3 | # negation (prefixed with !). Only one pattern per line. 4 | .DS_Store 5 | # Common VCS dirs 6 | .git/ 7 | .gitignore 8 | .bzr/ 9 | .bzrignore 10 | .hg/ 11 | .hgignore 12 | .svn/ 13 | # Common backup files 14 | *.swp 15 | *.bak 16 | *.tmp 17 | *~ 18 | # Various IDEs 19 | .project 20 | .idea/ 21 | *.tmproj 22 | -------------------------------------------------------------------------------- /bitnami/grafana/.helmignore: -------------------------------------------------------------------------------- 1 | # Patterns to ignore when building packages. 2 | # This supports shell glob matching, relative path matching, and 3 | # negation (prefixed with !). Only one pattern per line. 4 | .DS_Store 5 | # Common VCS dirs 6 | .git/ 7 | .gitignore 8 | .bzr/ 9 | .bzrignore 10 | .hg/ 11 | .hgignore 12 | .svn/ 13 | # Common backup files 14 | *.swp 15 | *.bak 16 | *.tmp 17 | *~ 18 | # Various IDEs 19 | .project 20 | .idea/ 21 | *.tmproj 22 | -------------------------------------------------------------------------------- /bitnami/harbor/.helmignore: -------------------------------------------------------------------------------- 1 | # Patterns to ignore when building packages. 2 | # This supports shell glob matching, relative path matching, and 3 | # negation (prefixed with !). Only one pattern per line. 4 | .DS_Store 5 | # Common VCS dirs 6 | .git/ 7 | .gitignore 8 | .bzr/ 9 | .bzrignore 10 | .hg/ 11 | .hgignore 12 | .svn/ 13 | # Common backup files 14 | *.swp 15 | *.bak 16 | *.tmp 17 | *~ 18 | # Various IDEs 19 | .project 20 | .idea/ 21 | *.tmproj 22 | -------------------------------------------------------------------------------- /bitnami/influxdb/.helmignore: -------------------------------------------------------------------------------- 1 | # Patterns to ignore when building packages. 2 | # This supports shell glob matching, relative path matching, and 3 | # negation (prefixed with !). Only one pattern per line. 4 | .DS_Store 5 | # Common VCS dirs 6 | .git/ 7 | .gitignore 8 | .bzr/ 9 | .bzrignore 10 | .hg/ 11 | .hgignore 12 | .svn/ 13 | # Common backup files 14 | *.swp 15 | *.bak 16 | *.tmp 17 | *~ 18 | # Various IDEs 19 | .project 20 | .idea/ 21 | *.tmproj 22 | -------------------------------------------------------------------------------- /bitnami/jenkins/.helmignore: -------------------------------------------------------------------------------- 1 | # Patterns to ignore when building packages. 2 | # This supports shell glob matching, relative path matching, and 3 | # negation (prefixed with !). Only one pattern per line. 4 | .DS_Store 5 | # Common VCS dirs 6 | .git/ 7 | .gitignore 8 | .bzr/ 9 | .bzrignore 10 | .hg/ 11 | .hgignore 12 | .svn/ 13 | # Common backup files 14 | *.swp 15 | *.bak 16 | *.tmp 17 | *~ 18 | # Various IDEs 19 | .project 20 | .idea/ 21 | *.tmproj 22 | -------------------------------------------------------------------------------- /bitnami/joomla/.helmignore: -------------------------------------------------------------------------------- 1 | # Patterns to ignore when building packages. 2 | # This supports shell glob matching, relative path matching, and 3 | # negation (prefixed with !). Only one pattern per line. 4 | .DS_Store 5 | # Common VCS dirs 6 | .git/ 7 | .gitignore 8 | .bzr/ 9 | .bzrignore 10 | .hg/ 11 | .hgignore 12 | .svn/ 13 | # Common backup files 14 | *.swp 15 | *.bak 16 | *.tmp 17 | *~ 18 | # Various IDEs 19 | .project 20 | .idea/ 21 | *.tmproj 22 | -------------------------------------------------------------------------------- /bitnami/kafka/.helmignore: -------------------------------------------------------------------------------- 1 | # Patterns to ignore when building packages. 2 | # This supports shell glob matching, relative path matching, and 3 | # negation (prefixed with !). Only one pattern per line. 4 | .DS_Store 5 | # Common VCS dirs 6 | .git/ 7 | .gitignore 8 | .bzr/ 9 | .bzrignore 10 | .hg/ 11 | .hgignore 12 | .svn/ 13 | # Common backup files 14 | *.swp 15 | *.bak 16 | *.tmp 17 | *~ 18 | # Various IDEs 19 | .project 20 | .idea/ 21 | *.tmproj 22 | -------------------------------------------------------------------------------- /bitnami/kibana/.helmignore: -------------------------------------------------------------------------------- 1 | # Patterns to ignore when building packages. 2 | # This supports shell glob matching, relative path matching, and 3 | # negation (prefixed with !). Only one pattern per line. 4 | .DS_Store 5 | # Common VCS dirs 6 | .git/ 7 | .gitignore 8 | .bzr/ 9 | .bzrignore 10 | .hg/ 11 | .hgignore 12 | .svn/ 13 | # Common backup files 14 | *.swp 15 | *.bak 16 | *.tmp 17 | *~ 18 | # Various IDEs 19 | .project 20 | .idea/ 21 | *.tmproj 22 | -------------------------------------------------------------------------------- /bitnami/kubeapps/.helmignore: -------------------------------------------------------------------------------- 1 | # Patterns to ignore when building packages. 2 | # This supports shell glob matching, relative path matching, and 3 | # negation (prefixed with !). Only one pattern per line. 4 | .DS_Store 5 | # Common VCS dirs 6 | .git/ 7 | .gitignore 8 | .bzr/ 9 | .bzrignore 10 | .hg/ 11 | .hgignore 12 | .svn/ 13 | # Common backup files 14 | *.swp 15 | *.bak 16 | *.tmp 17 | *~ 18 | # Various IDEs 19 | .project 20 | .idea/ 21 | *.tmproj 22 | -------------------------------------------------------------------------------- /bitnami/kubewatch/.helmignore: -------------------------------------------------------------------------------- 1 | # Patterns to ignore when building packages. 2 | # This supports shell glob matching, relative path matching, and 3 | # negation (prefixed with !). Only one pattern per line. 4 | .DS_Store 5 | # Common VCS dirs 6 | .git/ 7 | .gitignore 8 | .bzr/ 9 | .bzrignore 10 | .hg/ 11 | .hgignore 12 | .svn/ 13 | # Common backup files 14 | *.swp 15 | *.bak 16 | *.tmp 17 | *~ 18 | # Various IDEs 19 | .project 20 | .idea/ 21 | *.tmproj 22 | -------------------------------------------------------------------------------- /bitnami/magento/.helmignore: -------------------------------------------------------------------------------- 1 | # Patterns to ignore when building packages. 2 | # This supports shell glob matching, relative path matching, and 3 | # negation (prefixed with !). Only one pattern per line. 4 | .DS_Store 5 | # Common VCS dirs 6 | .git/ 7 | .gitignore 8 | .bzr/ 9 | .bzrignore 10 | .hg/ 11 | .hgignore 12 | .svn/ 13 | # Common backup files 14 | *.swp 15 | *.bak 16 | *.tmp 17 | *~ 18 | # Various IDEs 19 | .project 20 | .idea/ 21 | *.tmproj 22 | -------------------------------------------------------------------------------- /bitnami/mariadb/.helmignore: -------------------------------------------------------------------------------- 1 | # Patterns to ignore when building packages. 2 | # This supports shell glob matching, relative path matching, and 3 | # negation (prefixed with !). Only one pattern per line. 4 | .DS_Store 5 | # Common VCS dirs 6 | .git/ 7 | .gitignore 8 | .bzr/ 9 | .bzrignore 10 | .hg/ 11 | .hgignore 12 | .svn/ 13 | # Common backup files 14 | *.swp 15 | *.bak 16 | *.tmp 17 | *~ 18 | # Various IDEs 19 | .project 20 | .idea/ 21 | *.tmproj 22 | -------------------------------------------------------------------------------- /bitnami/mediawiki/.helmignore: -------------------------------------------------------------------------------- 1 | # Patterns to ignore when building packages. 2 | # This supports shell glob matching, relative path matching, and 3 | # negation (prefixed with !). Only one pattern per line. 4 | .DS_Store 5 | # Common VCS dirs 6 | .git/ 7 | .gitignore 8 | .bzr/ 9 | .bzrignore 10 | .hg/ 11 | .hgignore 12 | .svn/ 13 | # Common backup files 14 | *.swp 15 | *.bak 16 | *.tmp 17 | *~ 18 | # Various IDEs 19 | .project 20 | .idea/ 21 | *.tmproj 22 | -------------------------------------------------------------------------------- /bitnami/memcached/.helmignore: -------------------------------------------------------------------------------- 1 | # Patterns to ignore when building packages. 2 | # This supports shell glob matching, relative path matching, and 3 | # negation (prefixed with !). Only one pattern per line. 4 | .DS_Store 5 | # Common VCS dirs 6 | .git/ 7 | .gitignore 8 | .bzr/ 9 | .bzrignore 10 | .hg/ 11 | .hgignore 12 | .svn/ 13 | # Common backup files 14 | *.swp 15 | *.bak 16 | *.tmp 17 | *~ 18 | # Various IDEs 19 | .project 20 | .idea/ 21 | *.tmproj 22 | -------------------------------------------------------------------------------- /bitnami/minio/.helmignore: -------------------------------------------------------------------------------- 1 | # Patterns to ignore when building packages. 2 | # This supports shell glob matching, relative path matching, and 3 | # negation (prefixed with !). Only one pattern per line. 4 | .DS_Store 5 | # Common VCS dirs 6 | .git/ 7 | .gitignore 8 | .bzr/ 9 | .bzrignore 10 | .hg/ 11 | .hgignore 12 | .svn/ 13 | # Common backup files 14 | *.swp 15 | *.bak 16 | *.tmp 17 | *~ 18 | # Various IDEs 19 | .project 20 | .idea/ 21 | *.tmproj 22 | -------------------------------------------------------------------------------- /bitnami/mongodb/.helmignore: -------------------------------------------------------------------------------- 1 | # Patterns to ignore when building packages. 2 | # This supports shell glob matching, relative path matching, and 3 | # negation (prefixed with !). Only one pattern per line. 4 | .DS_Store 5 | # Common VCS dirs 6 | .git/ 7 | .gitignore 8 | .bzr/ 9 | .bzrignore 10 | .hg/ 11 | .hgignore 12 | .svn/ 13 | # Common backup files 14 | *.swp 15 | *.bak 16 | *.tmp 17 | *~ 18 | # Various IDEs 19 | .project 20 | .idea/ 21 | *.tmproj 22 | -------------------------------------------------------------------------------- /bitnami/moodle/.helmignore: -------------------------------------------------------------------------------- 1 | # Patterns to ignore when building packages. 2 | # This supports shell glob matching, relative path matching, and 3 | # negation (prefixed with !). Only one pattern per line. 4 | .DS_Store 5 | # Common VCS dirs 6 | .git/ 7 | .gitignore 8 | .bzr/ 9 | .bzrignore 10 | .hg/ 11 | .hgignore 12 | .svn/ 13 | # Common backup files 14 | *.swp 15 | *.bak 16 | *.tmp 17 | *~ 18 | # Various IDEs 19 | .project 20 | .idea/ 21 | *.tmproj 22 | -------------------------------------------------------------------------------- /bitnami/mxnet/.helmignore: -------------------------------------------------------------------------------- 1 | # Patterns to ignore when building packages. 2 | # This supports shell glob matching, relative path matching, and 3 | # negation (prefixed with !). Only one pattern per line. 4 | .DS_Store 5 | # Common VCS dirs 6 | .git/ 7 | .gitignore 8 | .bzr/ 9 | .bzrignore 10 | .hg/ 11 | .hgignore 12 | .svn/ 13 | # Common backup files 14 | *.swp 15 | *.bak 16 | *.tmp 17 | *~ 18 | # Various IDEs 19 | .project 20 | .idea/ 21 | *.tmproj 22 | -------------------------------------------------------------------------------- /bitnami/mysql/.helmignore: -------------------------------------------------------------------------------- 1 | # Patterns to ignore when building packages. 2 | # This supports shell glob matching, relative path matching, and 3 | # negation (prefixed with !). Only one pattern per line. 4 | .DS_Store 5 | # Common VCS dirs 6 | .git/ 7 | .gitignore 8 | .bzr/ 9 | .bzrignore 10 | .hg/ 11 | .hgignore 12 | .svn/ 13 | # Common backup files 14 | *.swp 15 | *.bak 16 | *.tmp 17 | *~ 18 | # Various IDEs 19 | .project 20 | .idea/ 21 | *.tmproj 22 | -------------------------------------------------------------------------------- /bitnami/nginx/.helmignore: -------------------------------------------------------------------------------- 1 | # Patterns to ignore when building packages. 2 | # This supports shell glob matching, relative path matching, and 3 | # negation (prefixed with !). Only one pattern per line. 4 | .DS_Store 5 | # Common VCS dirs 6 | .git/ 7 | .gitignore 8 | .bzr/ 9 | .bzrignore 10 | .hg/ 11 | .hgignore 12 | .svn/ 13 | # Common backup files 14 | *.swp 15 | *.bak 16 | *.tmp 17 | *~ 18 | # Various IDEs 19 | .project 20 | .idea/ 21 | *.tmproj 22 | -------------------------------------------------------------------------------- /bitnami/opencart/.helmignore: -------------------------------------------------------------------------------- 1 | # Patterns to ignore when building packages. 2 | # This supports shell glob matching, relative path matching, and 3 | # negation (prefixed with !). Only one pattern per line. 4 | .DS_Store 5 | # Common VCS dirs 6 | .git/ 7 | .gitignore 8 | .bzr/ 9 | .bzrignore 10 | .hg/ 11 | .hgignore 12 | .svn/ 13 | # Common backup files 14 | *.swp 15 | *.bak 16 | *.tmp 17 | *~ 18 | # Various IDEs 19 | .project 20 | .idea/ 21 | *.tmproj 22 | -------------------------------------------------------------------------------- /bitnami/orangehrm/.helmignore: -------------------------------------------------------------------------------- 1 | # Patterns to ignore when building packages. 2 | # This supports shell glob matching, relative path matching, and 3 | # negation (prefixed with !). Only one pattern per line. 4 | .DS_Store 5 | # Common VCS dirs 6 | .git/ 7 | .gitignore 8 | .bzr/ 9 | .bzrignore 10 | .hg/ 11 | .hgignore 12 | .svn/ 13 | # Common backup files 14 | *.swp 15 | *.bak 16 | *.tmp 17 | *~ 18 | # Various IDEs 19 | .project 20 | .idea/ 21 | *.tmproj 22 | -------------------------------------------------------------------------------- /bitnami/osclass/.helmignore: -------------------------------------------------------------------------------- 1 | # Patterns to ignore when building packages. 2 | # This supports shell glob matching, relative path matching, and 3 | # negation (prefixed with !). Only one pattern per line. 4 | .DS_Store 5 | # Common VCS dirs 6 | .git/ 7 | .gitignore 8 | .bzr/ 9 | .bzrignore 10 | .hg/ 11 | .hgignore 12 | .svn/ 13 | # Common backup files 14 | *.swp 15 | *.bak 16 | *.tmp 17 | *~ 18 | # Various IDEs 19 | .project 20 | .idea/ 21 | *.tmproj 22 | -------------------------------------------------------------------------------- /bitnami/owncloud/.helmignore: -------------------------------------------------------------------------------- 1 | # Patterns to ignore when building packages. 2 | # This supports shell glob matching, relative path matching, and 3 | # negation (prefixed with !). Only one pattern per line. 4 | .DS_Store 5 | # Common VCS dirs 6 | .git/ 7 | .gitignore 8 | .bzr/ 9 | .bzrignore 10 | .hg/ 11 | .hgignore 12 | .svn/ 13 | # Common backup files 14 | *.swp 15 | *.bak 16 | *.tmp 17 | *~ 18 | # Various IDEs 19 | .project 20 | .idea/ 21 | *.tmproj 22 | -------------------------------------------------------------------------------- /bitnami/parse/.helmignore: -------------------------------------------------------------------------------- 1 | # Patterns to ignore when building packages. 2 | # This supports shell glob matching, relative path matching, and 3 | # negation (prefixed with !). Only one pattern per line. 4 | .DS_Store 5 | # Common VCS dirs 6 | .git/ 7 | .gitignore 8 | .bzr/ 9 | .bzrignore 10 | .hg/ 11 | .hgignore 12 | .svn/ 13 | # Common backup files 14 | *.swp 15 | *.bak 16 | *.tmp 17 | *~ 18 | # Various IDEs 19 | .project 20 | .idea/ 21 | *.tmproj 22 | -------------------------------------------------------------------------------- /bitnami/phpbb/.helmignore: -------------------------------------------------------------------------------- 1 | # Patterns to ignore when building packages. 2 | # This supports shell glob matching, relative path matching, and 3 | # negation (prefixed with !). Only one pattern per line. 4 | .DS_Store 5 | # Common VCS dirs 6 | .git/ 7 | .gitignore 8 | .bzr/ 9 | .bzrignore 10 | .hg/ 11 | .hgignore 12 | .svn/ 13 | # Common backup files 14 | *.swp 15 | *.bak 16 | *.tmp 17 | *~ 18 | # Various IDEs 19 | .project 20 | .idea/ 21 | *.tmproj 22 | -------------------------------------------------------------------------------- /bitnami/pytorch/.helmignore: -------------------------------------------------------------------------------- 1 | # Patterns to ignore when building packages. 2 | # This supports shell glob matching, relative path matching, and 3 | # negation (prefixed with !). Only one pattern per line. 4 | .DS_Store 5 | # Common VCS dirs 6 | .git/ 7 | .gitignore 8 | .bzr/ 9 | .bzrignore 10 | .hg/ 11 | .hgignore 12 | .svn/ 13 | # Common backup files 14 | *.swp 15 | *.bak 16 | *.tmp 17 | *~ 18 | # Various IDEs 19 | .project 20 | .idea/ 21 | *.tmproj 22 | -------------------------------------------------------------------------------- /bitnami/rabbitmq/.helmignore: -------------------------------------------------------------------------------- 1 | # Patterns to ignore when building packages. 2 | # This supports shell glob matching, relative path matching, and 3 | # negation (prefixed with !). Only one pattern per line. 4 | .DS_Store 5 | # Common VCS dirs 6 | .git/ 7 | .gitignore 8 | .bzr/ 9 | .bzrignore 10 | .hg/ 11 | .hgignore 12 | .svn/ 13 | # Common backup files 14 | *.swp 15 | *.bak 16 | *.tmp 17 | *~ 18 | # Various IDEs 19 | .project 20 | .idea/ 21 | *.tmproj 22 | -------------------------------------------------------------------------------- /bitnami/redis/.helmignore: -------------------------------------------------------------------------------- 1 | # Patterns to ignore when building packages. 2 | # This supports shell glob matching, relative path matching, and 3 | # negation (prefixed with !). Only one pattern per line. 4 | .DS_Store 5 | # Common VCS dirs 6 | .git/ 7 | .gitignore 8 | .bzr/ 9 | .bzrignore 10 | .hg/ 11 | .hgignore 12 | .svn/ 13 | # Common backup files 14 | *.swp 15 | *.bak 16 | *.tmp 17 | *~ 18 | # Various IDEs 19 | .project 20 | .idea/ 21 | *.tmproj 22 | -------------------------------------------------------------------------------- /bitnami/redmine/.helmignore: -------------------------------------------------------------------------------- 1 | # Patterns to ignore when building packages. 2 | # This supports shell glob matching, relative path matching, and 3 | # negation (prefixed with !). Only one pattern per line. 4 | .DS_Store 5 | # Common VCS dirs 6 | .git/ 7 | .gitignore 8 | .bzr/ 9 | .bzrignore 10 | .hg/ 11 | .hgignore 12 | .svn/ 13 | # Common backup files 14 | *.swp 15 | *.bak 16 | *.tmp 17 | *~ 18 | # Various IDEs 19 | .project 20 | .idea/ 21 | *.tmproj 22 | -------------------------------------------------------------------------------- /bitnami/spark/.helmignore: -------------------------------------------------------------------------------- 1 | # Patterns to ignore when building packages. 2 | # This supports shell glob matching, relative path matching, and 3 | # negation (prefixed with !). Only one pattern per line. 4 | .DS_Store 5 | # Common VCS dirs 6 | .git/ 7 | .gitignore 8 | .bzr/ 9 | .bzrignore 10 | .hg/ 11 | .hgignore 12 | .svn/ 13 | # Common backup files 14 | *.swp 15 | *.bak 16 | *.tmp 17 | *~ 18 | # Various IDEs 19 | .project 20 | .idea/ 21 | *.tmproj 22 | -------------------------------------------------------------------------------- /bitnami/suitecrm/.helmignore: -------------------------------------------------------------------------------- 1 | # Patterns to ignore when building packages. 2 | # This supports shell glob matching, relative path matching, and 3 | # negation (prefixed with !). Only one pattern per line. 4 | .DS_Store 5 | # Common VCS dirs 6 | .git/ 7 | .gitignore 8 | .bzr/ 9 | .bzrignore 10 | .hg/ 11 | .hgignore 12 | .svn/ 13 | # Common backup files 14 | *.swp 15 | *.bak 16 | *.tmp 17 | *~ 18 | # Various IDEs 19 | .project 20 | .idea/ 21 | *.tmproj 22 | -------------------------------------------------------------------------------- /bitnami/testlink/.helmignore: -------------------------------------------------------------------------------- 1 | # Patterns to ignore when building packages. 2 | # This supports shell glob matching, relative path matching, and 3 | # negation (prefixed with !). Only one pattern per line. 4 | .DS_Store 5 | # Common VCS dirs 6 | .git/ 7 | .gitignore 8 | .bzr/ 9 | .bzrignore 10 | .hg/ 11 | .hgignore 12 | .svn/ 13 | # Common backup files 14 | *.swp 15 | *.bak 16 | *.tmp 17 | *~ 18 | # Various IDEs 19 | .project 20 | .idea/ 21 | *.tmproj 22 | -------------------------------------------------------------------------------- /bitnami/thanos/.helmignore: -------------------------------------------------------------------------------- 1 | # Patterns to ignore when building packages. 2 | # This supports shell glob matching, relative path matching, and 3 | # negation (prefixed with !). Only one pattern per line. 4 | .DS_Store 5 | # Common VCS dirs 6 | .git/ 7 | .gitignore 8 | .bzr/ 9 | .bzrignore 10 | .hg/ 11 | .hgignore 12 | .svn/ 13 | # Common backup files 14 | *.swp 15 | *.bak 16 | *.tmp 17 | *~ 18 | # Various IDEs 19 | .project 20 | .idea/ 21 | *.tmproj 22 | -------------------------------------------------------------------------------- /bitnami/tomcat/.helmignore: -------------------------------------------------------------------------------- 1 | # Patterns to ignore when building packages. 2 | # This supports shell glob matching, relative path matching, and 3 | # negation (prefixed with !). Only one pattern per line. 4 | .DS_Store 5 | # Common VCS dirs 6 | .git/ 7 | .gitignore 8 | .bzr/ 9 | .bzrignore 10 | .hg/ 11 | .hgignore 12 | .svn/ 13 | # Common backup files 14 | *.swp 15 | *.bak 16 | *.tmp 17 | *~ 18 | # Various IDEs 19 | .project 20 | .idea/ 21 | *.tmproj 22 | -------------------------------------------------------------------------------- /bitnami/wavefront/.helmignore: -------------------------------------------------------------------------------- 1 | # Patterns to ignore when building packages. 2 | # This supports shell glob matching, relative path matching, and 3 | # negation (prefixed with !). Only one pattern per line. 4 | .DS_Store 5 | # Common VCS dirs 6 | .git/ 7 | .gitignore 8 | .bzr/ 9 | .bzrignore 10 | .hg/ 11 | .hgignore 12 | .svn/ 13 | # Common backup files 14 | *.swp 15 | *.bak 16 | *.tmp 17 | *~ 18 | # Various IDEs 19 | .project 20 | .idea/ 21 | *.tmproj 22 | -------------------------------------------------------------------------------- /bitnami/wildfly/.helmignore: -------------------------------------------------------------------------------- 1 | # Patterns to ignore when building packages. 2 | # This supports shell glob matching, relative path matching, and 3 | # negation (prefixed with !). Only one pattern per line. 4 | .DS_Store 5 | # Common VCS dirs 6 | .git/ 7 | .gitignore 8 | .bzr/ 9 | .bzrignore 10 | .hg/ 11 | .hgignore 12 | .svn/ 13 | # Common backup files 14 | *.swp 15 | *.bak 16 | *.tmp 17 | *~ 18 | # Various IDEs 19 | .project 20 | .idea/ 21 | *.tmproj 22 | -------------------------------------------------------------------------------- /bitnami/wordpress/.helmignore: -------------------------------------------------------------------------------- 1 | # Patterns to ignore when building packages. 2 | # This supports shell glob matching, relative path matching, and 3 | # negation (prefixed with !). Only one pattern per line. 4 | .DS_Store 5 | # Common VCS dirs 6 | .git/ 7 | .gitignore 8 | .bzr/ 9 | .bzrignore 10 | .hg/ 11 | .hgignore 12 | .svn/ 13 | # Common backup files 14 | *.swp 15 | *.bak 16 | *.tmp 17 | *~ 18 | # Various IDEs 19 | .project 20 | .idea/ 21 | *.tmproj 22 | -------------------------------------------------------------------------------- /bitnami/zookeeper/.helmignore: -------------------------------------------------------------------------------- 1 | # Patterns to ignore when building packages. 2 | # This supports shell glob matching, relative path matching, and 3 | # negation (prefixed with !). Only one pattern per line. 4 | .DS_Store 5 | # Common VCS dirs 6 | .git/ 7 | .gitignore 8 | .bzr/ 9 | .bzrignore 10 | .hg/ 11 | .hgignore 12 | .svn/ 13 | # Common backup files 14 | *.swp 15 | *.bak 16 | *.tmp 17 | *~ 18 | # Various IDEs 19 | .project 20 | .idea/ 21 | *.tmproj 22 | -------------------------------------------------------------------------------- /bitnami/airflow/Chart.lock: -------------------------------------------------------------------------------- 1 | dependencies: 2 | - name: common 3 | repository: https://charts.bitnami.com/bitnami 4 | version: 1.0.1 5 | - name: postgresql 6 | repository: https://charts.bitnami.com/bitnami 7 | version: 10.1.1 8 | - name: redis 9 | repository: https://charts.bitnami.com/bitnami 10 | version: 12.1.1 11 | digest: sha256:1b211d635e28073de5f41a1905e569b962a95350161477b2f905e0f946b6c189 12 | generated: "2020-11-25T18:12:18.168440816Z" 13 | -------------------------------------------------------------------------------- /bitnami/airflow/ci/values-production-with-config.yaml: -------------------------------------------------------------------------------- 1 | # Test values file for generating all of the yaml and check that 2 | # the rendering is correct 3 | 4 | ingress: 5 | enabled: true 6 | 7 | metrics: 8 | enabled: true 9 | 10 | config: | 11 | test_configuration 12 | 13 | redis: 14 | enabled: false 15 | externalRedis: 16 | password: test 17 | 18 | postgresql: 19 | enabled: false 20 | externalDatabase: 21 | password: test 22 | 23 | 24 | -------------------------------------------------------------------------------- /bitnami/aspnet-core/.helmignore: -------------------------------------------------------------------------------- 1 | # Patterns to ignore when building packages. 2 | # This supports shell glob matching, relative path matching, and 3 | # negation (prefixed with !). Only one pattern per line. 4 | .DS_Store 5 | # Common VCS dirs 6 | .git/ 7 | .gitignore 8 | .bzr/ 9 | .bzrignore 10 | .hg/ 11 | .hgignore 12 | .svn/ 13 | # Common backup files 14 | *.swp 15 | *.bak 16 | *.tmp 17 | *~ 18 | # Various IDEs 19 | .project 20 | .idea/ 21 | *.tmproj 22 | -------------------------------------------------------------------------------- /bitnami/contour/templates/contour/configmap.yaml: -------------------------------------------------------------------------------- 1 | {{- if .Values.configInline }} 2 | --- 3 | apiVersion: v1 4 | kind: ConfigMap 5 | metadata: 6 | name: {{ include "common.names.fullname" . }} 7 | labels: {{- include "common.labels.standard" . | nindent 4}} 8 | app.kubernetes.io/component: contour 9 | data: 10 | contour.yaml: | 11 | {{ include "common.tplvalues.render" ( dict "value" .Values.configInline "context" $) | indent 4 }} 12 | {{- end }} 13 | -------------------------------------------------------------------------------- /bitnami/elasticsearch/.helmignore: -------------------------------------------------------------------------------- 1 | # Patterns to ignore when building packages. 2 | # This supports shell glob matching, relative path matching, and 3 | # negation (prefixed with !). Only one pattern per line. 4 | .DS_Store 5 | # Common VCS dirs 6 | .git/ 7 | .gitignore 8 | .bzr/ 9 | .bzrignore 10 | .hg/ 11 | .hgignore 12 | .svn/ 13 | # Common backup files 14 | *.swp 15 | *.bak 16 | *.tmp 17 | *~ 18 | # Various IDEs 19 | .project 20 | .idea/ 21 | *.tmproj 22 | -------------------------------------------------------------------------------- /bitnami/external-dns/.helmignore: -------------------------------------------------------------------------------- 1 | # Patterns to ignore when building packages. 2 | # This supports shell glob matching, relative path matching, and 3 | # negation (prefixed with !). Only one pattern per line. 4 | .DS_Store 5 | # Common VCS dirs 6 | .git/ 7 | .gitignore 8 | .bzr/ 9 | .bzrignore 10 | .hg/ 11 | .hgignore 12 | .svn/ 13 | # Common backup files 14 | *.swp 15 | *.bak 16 | *.tmp 17 | *~ 18 | # Various IDEs 19 | .project 20 | .idea/ 21 | *.tmproj 22 | -------------------------------------------------------------------------------- /bitnami/harbor/Chart.lock: -------------------------------------------------------------------------------- 1 | dependencies: 2 | - name: postgresql 3 | repository: https://charts.bitnami.com/bitnami 4 | version: 10.0.0 5 | - name: redis 6 | repository: https://charts.bitnami.com/bitnami 7 | version: 12.0.1 8 | - name: common 9 | repository: https://charts.bitnami.com/bitnami 10 | version: 1.0.0 11 | digest: sha256:993ed4f9a0d84be467365cfdcb8505420a29c248f287f72a251a2b9eda325370 12 | generated: "2020-11-18T08:40:01.354827995Z" 13 | -------------------------------------------------------------------------------- /bitnami/jasperreports/.helmignore: -------------------------------------------------------------------------------- 1 | # Patterns to ignore when building packages. 2 | # This supports shell glob matching, relative path matching, and 3 | # negation (prefixed with !). Only one pattern per line. 4 | .DS_Store 5 | # Common VCS dirs 6 | .git/ 7 | .gitignore 8 | .bzr/ 9 | .bzrignore 10 | .hg/ 11 | .hgignore 12 | .svn/ 13 | # Common backup files 14 | *.swp 15 | *.bak 16 | *.tmp 17 | *~ 18 | # Various IDEs 19 | .project 20 | .idea/ 21 | *.tmproj 22 | -------------------------------------------------------------------------------- /bitnami/kong/Chart.lock: -------------------------------------------------------------------------------- 1 | dependencies: 2 | - name: postgresql 3 | repository: https://charts.bitnami.com/bitnami 4 | version: 10.1.3 5 | - name: cassandra 6 | repository: https://charts.bitnami.com/bitnami 7 | version: 7.0.1 8 | - name: common 9 | repository: https://charts.bitnami.com/bitnami 10 | version: 1.1.1 11 | digest: sha256:8688dd2aca635ab548b64fca44be806377cd8f46f5b0ee8359ae33c247aae211 12 | generated: "2020-12-08T23:00:29.190045719Z" 13 | -------------------------------------------------------------------------------- /bitnami/mariadb-galera/.helmignore: -------------------------------------------------------------------------------- 1 | # Patterns to ignore when building packages. 2 | # This supports shell glob matching, relative path matching, and 3 | # negation (prefixed with !). Only one pattern per line. 4 | .DS_Store 5 | # Common VCS dirs 6 | .git/ 7 | .gitignore 8 | .bzr/ 9 | .bzrignore 10 | .hg/ 11 | .hgignore 12 | .svn/ 13 | # Common backup files 14 | *.swp 15 | *.bak 16 | *.tmp 17 | *~ 18 | # Various IDEs 19 | .project 20 | .idea/ 21 | *.tmproj 22 | -------------------------------------------------------------------------------- /bitnami/metrics-server/.helmignore: -------------------------------------------------------------------------------- 1 | # Patterns to ignore when building packages. 2 | # This supports shell glob matching, relative path matching, and 3 | # negation (prefixed with !). Only one pattern per line. 4 | .DS_Store 5 | # Common VCS dirs 6 | .git/ 7 | .gitignore 8 | .bzr/ 9 | .bzrignore 10 | .hg/ 11 | .hgignore 12 | .svn/ 13 | # Common backup files 14 | *.swp 15 | *.bak 16 | *.tmp 17 | *~ 18 | # Various IDEs 19 | .project 20 | .idea/ 21 | *.tmproj 22 | -------------------------------------------------------------------------------- /bitnami/minio/templates/tls-secrets.yaml: -------------------------------------------------------------------------------- 1 | {{- if .Values.ingress.enabled }} 2 | {{- range .Values.ingress.secrets }} 3 | apiVersion: v1 4 | kind: Secret 5 | metadata: 6 | name: {{ .name }} 7 | namespace: {{ .Release.Namespace | quote }} 8 | labels: {{- include "common.labels.standard" $ | nindent 4 }} 9 | type: kubernetes.io/tls 10 | data: 11 | tls.crt: {{ .certificate | b64enc }} 12 | tls.key: {{ .key | b64enc }} 13 | {{- end }} 14 | {{- end }} 15 | -------------------------------------------------------------------------------- /bitnami/node-exporter/.helmignore: -------------------------------------------------------------------------------- 1 | # Patterns to ignore when building packages. 2 | # This supports shell glob matching, relative path matching, and 3 | # negation (prefixed with !). Only one pattern per line. 4 | .DS_Store 5 | # Common VCS dirs 6 | .git/ 7 | .gitignore 8 | .bzr/ 9 | .bzrignore 10 | .hg/ 11 | .hgignore 12 | .svn/ 13 | # Common backup files 14 | *.swp 15 | *.bak 16 | *.tmp 17 | *~ 18 | # Various IDEs 19 | .project 20 | .idea/ 21 | *.tmproj 22 | -------------------------------------------------------------------------------- /bitnami/phabricator/.helmignore: -------------------------------------------------------------------------------- 1 | # Patterns to ignore when building packages. 2 | # This supports shell glob matching, relative path matching, and 3 | # negation (prefixed with !). Only one pattern per line. 4 | .DS_Store 5 | # Common VCS dirs 6 | .git/ 7 | .gitignore 8 | .bzr/ 9 | .bzrignore 10 | .hg/ 11 | .hgignore 12 | .svn/ 13 | # Common backup files 14 | *.swp 15 | *.bak 16 | *.tmp 17 | *~ 18 | # Various IDEs 19 | .project 20 | .idea/ 21 | *.tmproj 22 | -------------------------------------------------------------------------------- /bitnami/phpmyadmin/.helmignore: -------------------------------------------------------------------------------- 1 | # Patterns to ignore when building packages. 2 | # This supports shell glob matching, relative path matching, and 3 | # negation (prefixed with !). Only one pattern per line. 4 | .DS_Store 5 | # Common VCS dirs 6 | .git/ 7 | .gitignore 8 | .bzr/ 9 | .bzrignore 10 | .hg/ 11 | .hgignore 12 | .svn/ 13 | # Common backup files 14 | *.swp 15 | *.bak 16 | *.tmp 17 | *~ 18 | # Various IDEs 19 | .project 20 | .idea/ 21 | *.tmproj 22 | -------------------------------------------------------------------------------- /bitnami/postgresql-ha/.helmignore: -------------------------------------------------------------------------------- 1 | # Patterns to ignore when building packages. 2 | # This supports shell glob matching, relative path matching, and 3 | # negation (prefixed with !). Only one pattern per line. 4 | .DS_Store 5 | # Common VCS dirs 6 | .git/ 7 | .gitignore 8 | .bzr/ 9 | .bzrignore 10 | .hg/ 11 | .hgignore 12 | .svn/ 13 | # Common backup files 14 | *.swp 15 | *.bak 16 | *.tmp 17 | *~ 18 | # Various IDEs 19 | .project 20 | .idea/ 21 | *.tmproj 22 | -------------------------------------------------------------------------------- /bitnami/postgresql/.helmignore: -------------------------------------------------------------------------------- 1 | # Patterns to ignore when building packages. 2 | # This supports shell glob matching, relative path matching, and 3 | # negation (prefixed with !). Only one pattern per line. 4 | .DS_Store 5 | # Common VCS dirs 6 | .git/ 7 | .gitignore 8 | .bzr/ 9 | .bzrignore 10 | .hg/ 11 | .hgignore 12 | .svn/ 13 | # Common backup files 14 | *.swp 15 | *.bak 16 | *.tmp 17 | *~ 18 | # Various IDEs 19 | .project 20 | .idea/ 21 | *.tmproj 22 | -------------------------------------------------------------------------------- /bitnami/prestashop/.helmignore: -------------------------------------------------------------------------------- 1 | # Patterns to ignore when building packages. 2 | # This supports shell glob matching, relative path matching, and 3 | # negation (prefixed with !). Only one pattern per line. 4 | .DS_Store 5 | # Common VCS dirs 6 | .git/ 7 | .gitignore 8 | .bzr/ 9 | .bzrignore 10 | .hg/ 11 | .hgignore 12 | .svn/ 13 | # Common backup files 14 | *.swp 15 | *.bak 16 | *.tmp 17 | *~ 18 | # Various IDEs 19 | .project 20 | .idea/ 21 | *.tmproj 22 | -------------------------------------------------------------------------------- /bitnami/redis-cluster/.helmignore: -------------------------------------------------------------------------------- 1 | # Patterns to ignore when building packages. 2 | # This supports shell glob matching, relative path matching, and 3 | # negation (prefixed with !). Only one pattern per line. 4 | .DS_Store 5 | # Common VCS dirs 6 | .git/ 7 | .gitignore 8 | .bzr/ 9 | .bzrignore 10 | .hg/ 11 | .hgignore 12 | .svn/ 13 | # Common backup files 14 | *.swp 15 | *.bak 16 | *.tmp 17 | *~ 18 | # Various IDEs 19 | .project 20 | .idea/ 21 | *.tmproj 22 | -------------------------------------------------------------------------------- /template/CHART_NAME/.helmignore: -------------------------------------------------------------------------------- 1 | # Patterns to ignore when building packages. 2 | # This supports shell glob matching, relative path matching, and 3 | # negation (prefixed with !). Only one pattern per line. 4 | .DS_Store 5 | # Common VCS dirs 6 | .git/ 7 | .gitignore 8 | .bzr/ 9 | .bzrignore 10 | .hg/ 11 | .hgignore 12 | .svn/ 13 | # Common backup files 14 | *.swp 15 | *.bak 16 | *.tmp 17 | *~ 18 | # Various IDEs 19 | .project 20 | .idea/ 21 | *.tmproj 22 | -------------------------------------------------------------------------------- /bitnami/discourse/Chart.lock: -------------------------------------------------------------------------------- 1 | dependencies: 2 | - name: common 3 | repository: https://charts.bitnami.com/bitnami 4 | version: 1.1.1 5 | - name: postgresql 6 | repository: https://charts.bitnami.com/bitnami 7 | version: 10.1.1 8 | - name: redis 9 | repository: https://charts.bitnami.com/bitnami 10 | version: 12.1.1 11 | digest: sha256:2b670b33248702e7cf021b6dcf88f669b90cb5d23283602a831685369a9c957f 12 | generated: "2020-12-02T00:36:11.59768438Z" 13 | -------------------------------------------------------------------------------- /bitnami/kube-prometheus/.helmignore: -------------------------------------------------------------------------------- 1 | # Patterns to ignore when building packages. 2 | # This supports shell glob matching, relative path matching, and 3 | # negation (prefixed with !). Only one pattern per line. 4 | .DS_Store 5 | # Common VCS dirs 6 | .git/ 7 | .gitignore 8 | .bzr/ 9 | .bzrignore 10 | .hg/ 11 | .hgignore 12 | .svn/ 13 | # Common backup files 14 | *.swp 15 | *.bak 16 | *.tmp 17 | *~ 18 | # Various IDEs 19 | .project 20 | .idea/ 21 | *.tmproj 22 | -------------------------------------------------------------------------------- /bitnami/kube-state-metrics/.helmignore: -------------------------------------------------------------------------------- 1 | # Patterns to ignore when building packages. 2 | # This supports shell glob matching, relative path matching, and 3 | # negation (prefixed with !). Only one pattern per line. 4 | .DS_Store 5 | # Common VCS dirs 6 | .git/ 7 | .gitignore 8 | .bzr/ 9 | .bzrignore 10 | .hg/ 11 | .hgignore 12 | .svn/ 13 | # Common backup files 14 | *.swp 15 | *.bak 16 | *.tmp 17 | *~ 18 | # Various IDEs 19 | .project 20 | .idea/ 21 | *.tmproj 22 | -------------------------------------------------------------------------------- /bitnami/mongodb-sharded/.helmignore: -------------------------------------------------------------------------------- 1 | # Patterns to ignore when building packages. 2 | # This supports shell glob matching, relative path matching, and 3 | # negation (prefixed with !). Only one pattern per line. 4 | .DS_Store 5 | # Common VCS dirs 6 | .git/ 7 | .gitignore 8 | .bzr/ 9 | .bzrignore 10 | .hg/ 11 | .hgignore 12 | .svn/ 13 | # Common backup files 14 | *.swp 15 | *.bak 16 | *.tmp 17 | *~ 18 | # Various IDEs 19 | .project 20 | .idea/ 21 | *.tmproj 22 | -------------------------------------------------------------------------------- /bitnami/rabbitmq/templates/tls-secrets.yaml: -------------------------------------------------------------------------------- 1 | {{- if .Values.ingress.enabled }} 2 | {{- range .Values.ingress.secrets }} 3 | apiVersion: v1 4 | kind: Secret 5 | metadata: 6 | name: {{ .name }} 7 | namespace: {{ .Release.Namespace | quote }} 8 | labels: {{- include "common.labels.standard" . | nindent 4 }} 9 | type: kubernetes.io/tls 10 | data: 11 | tls.crt: {{ .certificate | b64enc }} 12 | tls.key: {{ .key | b64enc }} 13 | {{- end }} 14 | {{- end }} 15 | -------------------------------------------------------------------------------- /bitnami/redmine/Chart.lock: -------------------------------------------------------------------------------- 1 | dependencies: 2 | - name: common 3 | repository: https://charts.bitnami.com/bitnami 4 | version: 1.0.1 5 | - name: mariadb 6 | repository: https://charts.bitnami.com/bitnami 7 | version: 9.0.1 8 | - name: postgresql 9 | repository: https://charts.bitnami.com/bitnami 10 | version: 10.1.0 11 | digest: sha256:ae9dbe3da482328ed8a2a43188cf839d6c498877964956b295d64e7c4903b936 12 | generated: "2020-11-23T08:54:08.991433+01:00" 13 | -------------------------------------------------------------------------------- /bitnami/tensorflow-resnet/.helmignore: -------------------------------------------------------------------------------- 1 | # Patterns to ignore when building packages. 2 | # This supports shell glob matching, relative path matching, and 3 | # negation (prefixed with !). Only one pattern per line. 4 | .DS_Store 5 | # Common VCS dirs 6 | .git/ 7 | .gitignore 8 | .bzr/ 9 | .bzrignore 10 | .hg/ 11 | .hgignore 12 | .svn/ 13 | # Common backup files 14 | *.swp 15 | *.bak 16 | *.tmp 17 | *~ 18 | # Various IDEs 19 | .project 20 | .idea/ 21 | *.tmproj 22 | -------------------------------------------------------------------------------- /bitnami/thanos/templates/ruler/configmap.yaml: -------------------------------------------------------------------------------- 1 | {{- if (include "thanos.ruler.createConfigmap" .) }} 2 | apiVersion: v1 3 | kind: ConfigMap 4 | metadata: 5 | name: {{ include "thanos.fullname" . }}-ruler-configmap 6 | labels: {{- include "thanos.labels" . | nindent 4 }} 7 | app.kubernetes.io/component: ruler 8 | data: 9 | ruler.yml: |- 10 | {{- include "thanos.tplValue" (dict "value" .Values.ruler.config "context" $) | nindent 4 }} 11 | {{ end }} 12 | -------------------------------------------------------------------------------- /bitnami/common/.helmignore: -------------------------------------------------------------------------------- 1 | # Patterns to ignore when building packages. 2 | # This supports shell glob matching, relative path matching, and 3 | # negation (prefixed with !). Only one pattern per line. 4 | .DS_Store 5 | # Common VCS dirs 6 | .git/ 7 | .gitignore 8 | .bzr/ 9 | .bzrignore 10 | .hg/ 11 | .hgignore 12 | .svn/ 13 | # Common backup files 14 | *.swp 15 | *.bak 16 | *.tmp 17 | *~ 18 | # Various IDEs 19 | .project 20 | .idea/ 21 | *.tmproj 22 | .vscode/ 23 | -------------------------------------------------------------------------------- /bitnami/contour/.helmignore: -------------------------------------------------------------------------------- 1 | # Patterns to ignore when building packages. 2 | # This supports shell glob matching, relative path matching, and 3 | # negation (prefixed with !). Only one pattern per line. 4 | .DS_Store 5 | # Common VCS dirs 6 | .git/ 7 | .gitignore 8 | .bzr/ 9 | .bzrignore 10 | .hg/ 11 | .hgignore 12 | .svn/ 13 | # Common backup files 14 | *.swp 15 | *.bak 16 | *.tmp 17 | *~ 18 | # Various IDEs 19 | .project 20 | .idea/ 21 | *.tmproj 22 | .vscode/ 23 | -------------------------------------------------------------------------------- /bitnami/magento/Chart.lock: -------------------------------------------------------------------------------- 1 | dependencies: 2 | - name: common 3 | repository: https://charts.bitnami.com/bitnami 4 | version: 1.0.1 5 | - name: mariadb 6 | repository: https://charts.bitnami.com/bitnami 7 | version: 9.0.1 8 | - name: elasticsearch 9 | repository: https://charts.bitnami.com/bitnami 10 | version: 12.8.2 11 | digest: sha256:558ae3bfd0c0322a683ca2f2f906e28e2a2267f47d649cf21eb051c377882aba 12 | generated: "2020-11-25T09:50:46.482351+01:00" 13 | -------------------------------------------------------------------------------- /bitnami/metallb/.helmignore: -------------------------------------------------------------------------------- 1 | # Patterns to ignore when building packages. 2 | # This supports shell glob matching, relative path matching, and 3 | # negation (prefixed with !). Only one pattern per line. 4 | .DS_Store 5 | # Common VCS dirs 6 | .git/ 7 | .gitignore 8 | .bzr/ 9 | .bzrignore 10 | .hg/ 11 | .hgignore 12 | .svn/ 13 | # Common backup files 14 | *.swp 15 | *.bak 16 | *.tmp 17 | *~ 18 | # Various IDEs 19 | .project 20 | .idea/ 21 | *.tmproj 22 | .vscode/ 23 | -------------------------------------------------------------------------------- /bitnami/nginx-ingress-controller/.helmignore: -------------------------------------------------------------------------------- 1 | # Patterns to ignore when building packages. 2 | # This supports shell glob matching, relative path matching, and 3 | # negation (prefixed with !). Only one pattern per line. 4 | .DS_Store 5 | # Common VCS dirs 6 | .git/ 7 | .gitignore 8 | .bzr/ 9 | .bzrignore 10 | .hg/ 11 | .hgignore 12 | .svn/ 13 | # Common backup files 14 | *.swp 15 | *.bak 16 | *.tmp 17 | *~ 18 | # Various IDEs 19 | .project 20 | .idea/ 21 | *.tmproj 22 | -------------------------------------------------------------------------------- /bitnami/kube-prometheus/templates/prometheus-operator/serviceaccount.yaml: -------------------------------------------------------------------------------- 1 | {{- if and .Values.operator.enabled .Values.operator.serviceAccount.create }} 2 | apiVersion: v1 3 | kind: ServiceAccount 4 | metadata: 5 | name: {{ template "kube-prometheus.operator.serviceAccountName" . }} 6 | namespace: {{ .Release.Namespace }} 7 | labels: {{- include "kube-prometheus.operator.labels" . | nindent 4 }} 8 | {{- include "kube-prometheus.imagePullSecrets" . }} 9 | {{- end }} 10 | -------------------------------------------------------------------------------- /bitnami/logstash/.helmignore: -------------------------------------------------------------------------------- 1 | # Patterns to ignore when building packages. 2 | # This supports shell glob matching, relative path matching, and 3 | # negation (prefixed with !). Only one pattern per line. 4 | .DS_Store 5 | # Common VCS dirs 6 | .git/ 7 | .gitignore 8 | .bzr/ 9 | .bzrignore 10 | .hg/ 11 | .hgignore 12 | .svn/ 13 | # Common backup files 14 | *.swp 15 | *.bak 16 | *.tmp 17 | *~ 18 | # Various IDEs 19 | .project 20 | .idea/ 21 | *.tmproj 22 | files/conf/README.md -------------------------------------------------------------------------------- /bitnami/thanos/templates/bucketweb/tls-secrets.yaml: -------------------------------------------------------------------------------- 1 | {{- if .Values.bucketweb.ingress.enabled }} 2 | {{- range .Values.bucketweb.ingress.secrets }} 3 | apiVersion: v1 4 | kind: Secret 5 | metadata: 6 | name: {{ include "thanos.fullname" . }}-bucketweb 7 | labels: {{- include "thanos.labels" . | nindent 4 }} 8 | type: kubernetes.io/tls 9 | data: 10 | tls.crt: {{ .certificate | b64enc }} 11 | tls.key: {{ .key | b64enc }} 12 | --- 13 | {{- end }} 14 | {{- end }} 15 | -------------------------------------------------------------------------------- /bitnami/kubeapps/templates/db-secret-jobs-cleanup-serviceaccount.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: ServiceAccount 3 | metadata: 4 | name: {{ template "kubeapps.db-secret-jobs-cleanup.fullname" . }} 5 | annotations: 6 | helm.sh/hook: post-delete 7 | helm.sh/hook-delete-policy: hook-succeeded 8 | helm.sh/hook-weight: "-10" 9 | labels:{{ include "kubeapps.extraAppLabels" . | nindent 4 }} 10 | app: {{ template "kubeapps.db-secret-jobs-cleanup.fullname" . }} 11 | -------------------------------------------------------------------------------- /bitnami/kubernetes-event-exporter/templates/_helpers.tpl: -------------------------------------------------------------------------------- 1 | {{/* vim: set filetype=mustache: */}} 2 | 3 | {{/* 4 | Create the name of the service account to use 5 | */}} 6 | {{- define "kubernetes-event-exporter.serviceAccountName" -}} 7 | {{- if .Values.serviceAccount.create -}} 8 | {{ default (include "common.names.fullname" .) .Values.serviceAccount.name }} 9 | {{- else -}} 10 | {{ default "default" .Values.serviceAccount.name }} 11 | {{- end -}} 12 | {{- end -}} 13 | -------------------------------------------------------------------------------- /bitnami/mongodb-sharded/templates/mongos/mongos-configmap.yaml: -------------------------------------------------------------------------------- 1 | {{- if .Values.mongos.config }} 2 | apiVersion: v1 3 | kind: ConfigMap 4 | metadata: 5 | name: {{ include "common.names.fullname" . }}-mongos 6 | labels: {{- include "common.labels.standard" . | nindent 4 }} 7 | app.kubernetes.io/component: mongos 8 | data: 9 | mongodb.conf: |- 10 | {{- include "common.tplvalues.render" (dict "value" .Values.mongos.config "context" $) | indent 4 }} 11 | {{- end }} 12 | -------------------------------------------------------------------------------- /bitnami/parse/templates/pvc.yaml: -------------------------------------------------------------------------------- 1 | {{- if .Values.persistence.enabled -}} 2 | kind: PersistentVolumeClaim 3 | apiVersion: v1 4 | metadata: 5 | name: {{ include "parse.fullname" . }} 6 | labels: {{ include "parse.labels" . | nindent 4 }} 7 | spec: 8 | accessModes: 9 | - {{ .Values.persistence.accessMode | quote }} 10 | resources: 11 | requests: 12 | storage: {{ .Values.persistence.size | quote }} 13 | {{ include "parse.storageClass" . }} 14 | {{- end -}} 15 | -------------------------------------------------------------------------------- /bitnami/pytorch/templates/headless-svc.yaml: -------------------------------------------------------------------------------- 1 | {{- if eq .Values.mode "distributed" }} 2 | apiVersion: v1 3 | kind: Service 4 | metadata: 5 | name: {{ include "pytorch.fullname" . }}-headless 6 | labels: {{- include "pytorch.labels" . | nindent 4 }} 7 | app.kubernetes.io/component: worker 8 | spec: 9 | type: ClusterIP 10 | clusterIP: None 11 | selector: {{- include "pytorch.matchLabels" . | nindent 4 }} 12 | app.kubernetes.io/component: worker 13 | {{- end }} 14 | -------------------------------------------------------------------------------- /bitnami/spring-cloud-dataflow/templates/externaldb-secrets.yaml: -------------------------------------------------------------------------------- 1 | {{- if and (not .Values.mariadb.enabled) (not .Values.externalDatabase.existingPasswordSecret) }} 2 | apiVersion: v1 3 | kind: Secret 4 | metadata: 5 | name: {{ printf "%s-%s" (include "scdf.fullname" .) "externaldb" }} 6 | labels: {{- include "common.labels.standard" . | nindent 4 }} 7 | type: Opaque 8 | data: 9 | mariadb-password: {{ .Values.externalDatabase.password | b64enc | quote }} 10 | {{- end }} 11 | -------------------------------------------------------------------------------- /bitnami/common/templates/_tplvalues.tpl: -------------------------------------------------------------------------------- 1 | {{/* vim: set filetype=mustache: */}} 2 | {{/* 3 | Renders a value that contains template. 4 | Usage: 5 | {{ include "common.tplvalues.render" ( dict "value" .Values.path.to.the.Value "context" $) }} 6 | */}} 7 | {{- define "common.tplvalues.render" -}} 8 | {{- if typeIs "string" .value }} 9 | {{- tpl .value .context }} 10 | {{- else }} 11 | {{- tpl (.value | toYaml) .context }} 12 | {{- end }} 13 | {{- end -}} 14 | -------------------------------------------------------------------------------- /bitnami/discourse/.helmignore: -------------------------------------------------------------------------------- 1 | # Patterns to ignore when building packages. 2 | # This supports shell glob matching, relative path matching, and 3 | # negation (prefixed with !). Only one pattern per line. 4 | .DS_Store 5 | # Common VCS dirs 6 | .git/ 7 | .gitignore 8 | .bzr/ 9 | .bzrignore 10 | .hg/ 11 | .hgignore 12 | .svn/ 13 | # Common backup files 14 | *.swp 15 | *.bak 16 | *.tmp 17 | *.orig 18 | *~ 19 | # Various IDEs 20 | .project 21 | .idea/ 22 | *.tmproj 23 | .vscode/ 24 | -------------------------------------------------------------------------------- /bitnami/influxdb/files/conf/README.md: -------------------------------------------------------------------------------- 1 | Place your InfluxDB and InfluxDB Relay configuration files here. These will not be used in case the values *existingConfiguration*, *relay.existingConfiguration* are used. 2 | 3 | More information can be found in the links below: 4 | 5 | - [InfluxDB Configuration File](https://github.com/bitnami/bitnami-docker-influxdb#configuration-file) 6 | - [InfluxDB Relay Configuration File](https://github.com/bitnami/bitnami-docker-influxdb-relay#configuration) 7 | -------------------------------------------------------------------------------- /bitnami/kube-prometheus/Chart.lock: -------------------------------------------------------------------------------- 1 | dependencies: 2 | - name: common 3 | repository: https://charts.bitnami.com/bitnami 4 | version: 1.1.1 5 | - name: node-exporter 6 | repository: https://charts.bitnami.com/bitnami 7 | version: 2.0.0 8 | - name: kube-state-metrics 9 | repository: https://charts.bitnami.com/bitnami 10 | version: 1.1.0 11 | digest: sha256:7229fa41055ab6ca96e88812693ed6bcfdb8434c5644d69f7699293d3e58f0a3 12 | generated: "2020-12-04T16:28:33.891061998Z" 13 | -------------------------------------------------------------------------------- /bitnami/kubernetes-event-exporter/.helmignore: -------------------------------------------------------------------------------- 1 | # Patterns to ignore when building packages. 2 | # This supports shell glob matching, relative path matching, and 3 | # negation (prefixed with !). Only one pattern per line. 4 | .DS_Store 5 | # Common VCS dirs 6 | .git/ 7 | .gitignore 8 | .bzr/ 9 | .bzrignore 10 | .hg/ 11 | .hgignore 12 | .svn/ 13 | # Common backup files 14 | *.swp 15 | *.bak 16 | *.tmp 17 | *~ 18 | # Various IDEs 19 | .project 20 | .idea/ 21 | *.tmproj 22 | .vscode/ 23 | -------------------------------------------------------------------------------- /bitnami/minio/templates/secrets.yaml: -------------------------------------------------------------------------------- 1 | {{- if (include "minio.createSecret" .) }} 2 | apiVersion: v1 3 | kind: Secret 4 | metadata: 5 | name: {{ include "common.names.fullname" . }} 6 | namespace: {{ .Release.Namespace | quote }} 7 | labels: {{- include "common.labels.standard" . | nindent 4 }} 8 | type: Opaque 9 | data: 10 | access-key: {{ include "minio.accessKey" . | b64enc | quote }} 11 | secret-key: {{ include "minio.secretKey" . | b64enc | quote }} 12 | {{- end }} 13 | -------------------------------------------------------------------------------- /bitnami/mongodb/templates/role.yaml: -------------------------------------------------------------------------------- 1 | {{- if .Values.rbac.create }} 2 | apiVersion: rbac.authorization.k8s.io/v1 3 | kind: Role 4 | metadata: 5 | name: {{ include "mongodb.fullname" . }} 6 | namespace: {{ include "mongodb.namespace" . }} 7 | labels: {{- include "common.labels.standard" . | nindent 4 }} 8 | rules: 9 | - apiGroups: 10 | - "" 11 | resources: 12 | - services 13 | verbs: 14 | - get 15 | - list 16 | - watch 17 | {{- end }} 18 | -------------------------------------------------------------------------------- /bitnami/external-dns/templates/psp-clusterrole.yaml: -------------------------------------------------------------------------------- 1 | {{- if .Values.rbac.pspEnabled }} 2 | kind: ClusterRole 3 | apiVersion: rbac.authorization.k8s.io/v1 4 | metadata: 5 | name: {{ template "external-dns.fullname" . }}-psp 6 | labels: {{ include "external-dns.labels" . | nindent 4 }} 7 | rules: 8 | - apiGroups: ['extensions'] 9 | resources: ['podsecuritypolicies'] 10 | verbs: ['use'] 11 | resourceNames: 12 | - {{ template "external-dns.fullname" . }} 13 | {{- end }} 14 | -------------------------------------------------------------------------------- /bitnami/kong/templates/kong-prometheus-role.yaml: -------------------------------------------------------------------------------- 1 | {{- if and .Values.metrics.enabled .Values.metrics.serviceMonitor.enabled .Values.metrics.serviceMonitor.rbac.create }} 2 | apiVersion: rbac.authorization.k8s.io/v1 3 | kind: Role 4 | metadata: 5 | name: {{ template "common.names.fullname" . }}-prometheus 6 | namespace: {{ .Release.Namespace }} 7 | rules: 8 | - apiGroups: [""] 9 | resources: ["endpoints", "services", "pods"] 10 | verbs: ["get", "list", "watch"] 11 | {{- end }} 12 | -------------------------------------------------------------------------------- /bitnami/kubeapps/templates/apprepository-jobs-cleanup-serviceaccount.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: ServiceAccount 3 | metadata: 4 | name: {{ template "kubeapps.apprepository-jobs-cleanup.fullname" . }} 5 | annotations: 6 | helm.sh/hook: post-delete 7 | helm.sh/hook-delete-policy: hook-succeeded 8 | helm.sh/hook-weight: "-10" 9 | labels:{{ include "kubeapps.extraAppLabels" . | nindent 4 }} 10 | app: {{ template "kubeapps.apprepository-jobs-cleanup.fullname" . }} 11 | -------------------------------------------------------------------------------- /bitnami/thanos/templates/query-frontend/tls-secrets.yaml: -------------------------------------------------------------------------------- 1 | {{- if .Values.queryFrontend.ingress.enabled }} 2 | {{- range .Values.queryFrontend.ingress.secrets }} 3 | apiVersion: v1 4 | kind: Secret 5 | metadata: 6 | name: {{ include "thanos.fullname" . }}-query-frontend 7 | labels: {{- include "thanos.labels" . | nindent 4 }} 8 | type: kubernetes.io/tls 9 | data: 10 | tls.crt: {{ .certificate | b64enc }} 11 | tls.key: {{ .key | b64enc }} 12 | --- 13 | {{- end }} 14 | {{- end }} 15 | -------------------------------------------------------------------------------- /bitnami/postgresql-ha/ci/values-production-with-pdb.yaml: -------------------------------------------------------------------------------- 1 | # Test values file for generating all of the yaml and check that 2 | # the rendering is correct 3 | 4 | postgresql: 5 | pdb: 6 | create: true 7 | 8 | pgpool: 9 | pdb: 10 | create: true 11 | 12 | networkPolicy: 13 | enabled: true 14 | allowExternal: false 15 | 16 | metrics: 17 | enabled: true 18 | ## Kubeval doesn't recognise ServiceMonitor as a valid K8s object 19 | # serviceMonitor: 20 | # enabled: true 21 | -------------------------------------------------------------------------------- /bitnami/spring-cloud-dataflow/.helmignore: -------------------------------------------------------------------------------- 1 | # Patterns to ignore when building packages. 2 | # This supports shell glob matching, relative path matching, and 3 | # negation (prefixed with !). Only one pattern per line. 4 | .DS_Store 5 | # Common VCS dirs 6 | .git/ 7 | .gitignore 8 | .bzr/ 9 | .bzrignore 10 | .hg/ 11 | .hgignore 12 | .svn/ 13 | # Common backup files 14 | *.swp 15 | *.bak 16 | *.tmp 17 | *.orig 18 | *~ 19 | # Various IDEs 20 | .project 21 | .idea/ 22 | *.tmproj 23 | .vscode/ 24 | -------------------------------------------------------------------------------- /bitnami/kubeapps/templates/kubeops-service.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: Service 3 | metadata: 4 | name: {{ template "kubeapps.kubeops.fullname" . }} 5 | labels:{{ include "kubeapps.labels" . | nindent 4 }} 6 | spec: 7 | type: ClusterIP 8 | ports: 9 | - port: {{ .Values.kubeops.service.port }} 10 | targetPort: http 11 | protocol: TCP 12 | name: http 13 | selector: 14 | app: {{ template "kubeapps.kubeops.fullname" . }} 15 | release: {{ .Release.Name }} 16 | -------------------------------------------------------------------------------- /bitnami/metallb/templates/secret.yaml: -------------------------------------------------------------------------------- 1 | {{- if not .Values.speaker.secretName }} 2 | apiVersion: v1 3 | data: 4 | secretkey: {{ randAlphaNum 256 | b64enc | quote }} 5 | kind: Secret 6 | metadata: 7 | name: {{ include "metallb.fullname" . }}-memberlist 8 | labels: {{- include "metallb.labels" . | nindent 4 }} 9 | app.kubernetes.io/component: speaker 10 | annotations: 11 | "helm.sh/hook": "pre-install" 12 | "helm.sh/hook-delete-policy": "before-hook-creation" 13 | {{- end }} 14 | -------------------------------------------------------------------------------- /bitnami/spring-cloud-dataflow/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- 1 | {{- if .Values.serviceAccount.create -}} 2 | apiVersion: v1 3 | kind: ServiceAccount 4 | metadata: 5 | name: {{ include "scdf.serviceAccountName" . }} 6 | labels: {{- include "common.labels.standard" . | nindent 4 }} 7 | {{- if .Values.serviceAccount.annotations }} 8 | annotations: {{- include "common.tplvalues.render" ( dict "value" .Values.serviceAccount.annotations "context" $) | nindent 4 }} 9 | {{- end }} 10 | {{- end }} 11 | -------------------------------------------------------------------------------- /bitnami/thanos/templates/storegateway/configmap.yaml: -------------------------------------------------------------------------------- 1 | {{- if (include "thanos.storegateway.createConfigmap" .) }} 2 | apiVersion: v1 3 | kind: ConfigMap 4 | metadata: 5 | name: {{ include "thanos.fullname" . }}-storegateway-configmap 6 | labels: {{- include "thanos.labels" . | nindent 4 }} 7 | app.kubernetes.io/component: storegateway 8 | data: 9 | config.yml: |- 10 | {{- include "thanos.tplValue" (dict "value" .Values.storegateway.config "context" $) | nindent 4 }} 11 | {{ end }} 12 | -------------------------------------------------------------------------------- /bitnami/kubeapps/templates/dashboard-service.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: Service 3 | metadata: 4 | name: {{ template "kubeapps.dashboard.fullname" . }} 5 | labels:{{ include "kubeapps.labels" . | nindent 4 }} 6 | spec: 7 | type: ClusterIP 8 | ports: 9 | - port: {{ .Values.dashboard.service.port }} 10 | targetPort: http 11 | protocol: TCP 12 | name: http 13 | selector: 14 | app: {{ template "kubeapps.dashboard.fullname" . }} 15 | release: {{ .Release.Name }} 16 | -------------------------------------------------------------------------------- /bitnami/phabricator/templates/pvc.yaml: -------------------------------------------------------------------------------- 1 | {{- if .Values.persistence.enabled -}} 2 | kind: PersistentVolumeClaim 3 | apiVersion: v1 4 | metadata: 5 | name: {{ template "phabricator.fullname" . }} 6 | labels: {{- include "phabricator.labels" . | nindent 4 }} 7 | spec: 8 | accessModes: 9 | - {{ .Values.persistence.accessMode | quote }} 10 | resources: 11 | requests: 12 | storage: {{ .Values.persistence.size | quote }} 13 | {{ include "phabricator.storageClass" . }} 14 | {{- end -}} 15 | -------------------------------------------------------------------------------- /bitnami/thanos/templates/query-frontend/configmap.yaml: -------------------------------------------------------------------------------- 1 | {{- if (include "thanos.queryFrontend.createConfigmap" .) }} 2 | apiVersion: v1 3 | kind: ConfigMap 4 | metadata: 5 | name: {{ include "thanos.fullname" . }}-query-frontend-configmap 6 | labels: {{- include "thanos.labels" . | nindent 4 }} 7 | app.kubernetes.io/component: query-frontend 8 | data: 9 | config.yml: |- 10 | {{- include "thanos.tplValue" (dict "value" .Values.queryFrontend.config "context" $) | nindent 4 }} 11 | {{ end }} 12 | -------------------------------------------------------------------------------- /bitnami/thanos/templates/query/tls-secrets.yaml: -------------------------------------------------------------------------------- 1 | {{- $query := (include "thanos.query.values" . | fromYaml) -}} 2 | {{- if $query.ingress.enabled }} 3 | {{- range $query.ingress.secrets }} 4 | apiVersion: v1 5 | kind: Secret 6 | metadata: 7 | name: {{ include "thanos.fullname" . }}-query 8 | labels: {{- include "thanos.labels" . | nindent 4 }} 9 | type: kubernetes.io/tls 10 | data: 11 | tls.crt: {{ .certificate | b64enc }} 12 | tls.key: {{ .key | b64enc }} 13 | --- 14 | {{- end }} 15 | {{- end }} 16 | -------------------------------------------------------------------------------- /bitnami/logstash/templates/headless-svc.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: Service 3 | metadata: 4 | name: {{ printf "%s-headless" (include "common.names.fullname" .) }} 5 | labels: {{- include "common.labels.standard" . | nindent 4 }} 6 | spec: 7 | type: ClusterIP 8 | clusterIP: None 9 | ports: 10 | {{- range $key, $value := .Values.service.ports }} 11 | - name: {{ $key }} 12 | {{ toYaml $value | indent 6 }} 13 | {{- end }} 14 | selector: {{ include "common.labels.matchLabels" . | nindent 4 }} 15 | -------------------------------------------------------------------------------- /bitnami/thanos/templates/query/psp-clusterrole.yaml: -------------------------------------------------------------------------------- 1 | {{- $query := (include "thanos.query.values" . | fromYaml) -}} 2 | {{- if and $query.enabled $query.pspEnabled $query.rbac.create -}} 3 | apiVersion: rbac.authorization.k8s.io/v1 4 | kind: ClusterRole 5 | metadata: 6 | name: {{ include "thanos.fullname" . }}-query 7 | rules: 8 | - apiGroups: ['policy'] 9 | resources: ['podsecuritypolicies'] 10 | verbs: ['use'] 11 | resourceNames: 12 | - {{ include "thanos.fullname" . }}-query 13 | {{- end -}} 14 | -------------------------------------------------------------------------------- /bitnami/grafana/templates/smtp-secret.yaml: -------------------------------------------------------------------------------- 1 | {{- if (include "grafana.createSMTPSecret" .) }} 2 | apiVersion: v1 3 | kind: Secret 4 | metadata: 5 | name: {{ template "grafana.fullname" . }}-smtp 6 | namespace: {{ .Release.Namespace }} 7 | labels: {{- include "grafana.labels" . | nindent 4 }} 8 | app.kubernetes.io/component: grafana 9 | type: Opaque 10 | data: 11 | GF_SMTP_USER: {{ .Values.smtp.user | b64enc | quote }} 12 | GF_SMTP_PASSWORD: {{ .Values.smtp.password | b64enc | quote }} 13 | {{- end }} 14 | -------------------------------------------------------------------------------- /bitnami/kubeapps/templates/kubeops-config.yaml: -------------------------------------------------------------------------------- 1 | {{- if gt (len .Values.clusters) 0 -}} 2 | apiVersion: v1 3 | kind: ConfigMap 4 | metadata: 5 | name: {{ template "kubeapps.kubeops-config.fullname" . }} 6 | labels: 7 | app: {{ template "kubeapps.kubeops-config.fullname" . }} 8 | chart: {{ template "kubeapps.chart" . }} 9 | release: {{ .Release.Name }} 10 | heritage: {{ .Release.Service }} 11 | data: 12 | clusters.conf: |- 13 | {{ .Values.clusters | toPrettyJson | indent 4 }} 14 | {{- end -}} 15 | -------------------------------------------------------------------------------- /bitnami/mongodb/templates/configmap.yaml: -------------------------------------------------------------------------------- 1 | {{- if (include "mongodb.createConfigmap" .) }} 2 | apiVersion: v1 3 | kind: ConfigMap 4 | metadata: 5 | name: {{ include "mongodb.fullname" . }} 6 | namespace: {{ include "mongodb.namespace" . }} 7 | labels: {{- include "common.labels.standard" . | nindent 4 }} 8 | app.kubernetes.io/component: mongodb 9 | data: 10 | mongodb.conf: |- 11 | {{- include "common.tplvalues.render" (dict "value" .Values.configuration "context" $) | nindent 4 }} 12 | {{- end }} 13 | -------------------------------------------------------------------------------- /bitnami/postgresql/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- 1 | {{- if and (.Values.serviceAccount.enabled) (not .Values.serviceAccount.name) }} 2 | apiVersion: v1 3 | kind: ServiceAccount 4 | metadata: 5 | labels: 6 | {{- include "common.labels.standard" . | nindent 4 }} 7 | name: {{ template "postgresql.fullname" . }} 8 | {{- if .Values.commonAnnotations }} 9 | annotations: {{- include "common.tplvalues.render" ( dict "value" .Values.commonAnnotations "context" $ ) | nindent 4 }} 10 | {{- end }} 11 | {{- end }} 12 | -------------------------------------------------------------------------------- /bitnami/rabbitmq/templates/role.yaml: -------------------------------------------------------------------------------- 1 | {{- if .Values.rbac.create }} 2 | kind: Role 3 | apiVersion: rbac.authorization.k8s.io/v1 4 | metadata: 5 | name: {{ template "rabbitmq.fullname" . }}-endpoint-reader 6 | namespace: {{ .Release.Namespace | quote }} 7 | labels: {{- include "common.labels.standard" . | nindent 4 }} 8 | rules: 9 | - apiGroups: [""] 10 | resources: ["endpoints"] 11 | verbs: ["get"] 12 | - apiGroups: [""] 13 | resources: ["events"] 14 | verbs: ["create"] 15 | {{- end }} 16 | -------------------------------------------------------------------------------- /bitnami/thanos/templates/query-frontend/psp-clusterrole.yaml: -------------------------------------------------------------------------------- 1 | {{- if and .Values.queryFrontend.enabled .Values.queryFrontend.pspEnabled .Values.queryFrontend.rbac.create -}} 2 | apiVersion: rbac.authorization.k8s.io/v1 3 | kind: ClusterRole 4 | metadata: 5 | name: {{ include "thanos.fullname" . }}-query-frontend 6 | rules: 7 | - apiGroups: ['policy'] 8 | resources: ['podsecuritypolicies'] 9 | verbs: ['use'] 10 | resourceNames: 11 | - {{ include "thanos.fullname" . }}-query-frontend 12 | {{- end -}} 13 | -------------------------------------------------------------------------------- /bitnami/grafana/templates/secret.yaml: -------------------------------------------------------------------------------- 1 | {{- if (include "grafana.createAdminSecret" .) }} 2 | apiVersion: v1 3 | kind: Secret 4 | metadata: 5 | name: {{ template "grafana.fullname" . }}-admin 6 | namespace: {{ .Release.Namespace }} 7 | labels: {{- include "grafana.labels" . | nindent 4 }} 8 | app.kubernetes.io/component: grafana 9 | type: Opaque 10 | data: 11 | GF_SECURITY_ADMIN_PASSWORD: {{ ternary (randAlphaNum 10) .Values.admin.password (empty .Values.admin.password) | b64enc | quote }} 12 | {{- end }} 13 | -------------------------------------------------------------------------------- /bitnami/node-exporter/templates/psp-clusterrole.yaml: -------------------------------------------------------------------------------- 1 | {{- if and .Values.rbac.create .Values.rbac.pspEnabled }} 2 | kind: ClusterRole 3 | apiVersion: rbac.authorization.k8s.io/v1 4 | metadata: 5 | name: {{ template "common.names.fullname" . }}-psp 6 | labels: {{- include "common.labels.standard" . | nindent 4 }} 7 | rules: 8 | - apiGroups: ['extensions'] 9 | resources: ['podsecuritypolicies'] 10 | verbs: ['use'] 11 | resourceNames: 12 | - {{ template "common.names.fullname" . }} 13 | {{- end }} 14 | -------------------------------------------------------------------------------- /bitnami/postgresql/files/conf.d/README.md: -------------------------------------------------------------------------------- 1 | If you don't want to provide the whole configuration file and only specify certain parameters, you can copy here your extended `.conf` files. 2 | These files will be injected as a config maps and add/overwrite the default configuration using the `include_dir` directive that allows settings to be loaded from files other than the default `postgresql.conf`. 3 | 4 | More info in the [bitnami-docker-postgresql README](https://github.com/bitnami/bitnami-docker-postgresql#configuration-file). 5 | -------------------------------------------------------------------------------- /bitnami/kube-state-metrics/templates/psp-clusterrole.yaml: -------------------------------------------------------------------------------- 1 | {{- if and .Values.rbac.create .Values.rbac.pspEnabled }} 2 | kind: ClusterRole 3 | apiVersion: rbac.authorization.k8s.io/v1 4 | metadata: 5 | name: {{ template "common.names.fullname" . }}-psp 6 | labels: {{- include "common.labels.standard" . | nindent 4 }} 7 | rules: 8 | - apiGroups: ['extensions'] 9 | resources: ['podsecuritypolicies'] 10 | verbs: ['use'] 11 | resourceNames: 12 | - {{ template "common.names.fullname" . }} 13 | {{- end }} 14 | -------------------------------------------------------------------------------- /bitnami/spring-cloud-dataflow/templates/externalrabbitmq-secrets.yaml: -------------------------------------------------------------------------------- 1 | {{- if and (.Values.externalRabbitmq.enabled) (not .Values.rabbitmq.enabled) (not .Values.externalRabbitmq.existingPasswordSecret) }} 2 | apiVersion: v1 3 | kind: Secret 4 | metadata: 5 | name: {{ printf "%s-%s" (include "scdf.fullname" .) "externalrabbitmq" }} 6 | labels: {{- include "common.labels.standard" . | nindent 4 }} 7 | type: Opaque 8 | data: 9 | rabbitmq-password: {{ .Values.externalRabbitmq.password | b64enc | quote }} 10 | {{- end }} 11 | -------------------------------------------------------------------------------- /bitnami/wavefront/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | Wavefront is setup and configured to collect metrics from your Kubernetes cluster. You should see metrics flowing within a few minutes. 2 | 3 | You can visit this dashboard in Wavefront to see your Kubernetes metrics: 4 | 5 | {{ .Values.wavefront.url }}/dashboard/integration-kubernetes-summary 6 | 7 | {{ include "common.warnings.rollingTag" .Values.collector.image }} 8 | {{ include "common.warnings.rollingTag" .Values.proxy.image }} 9 | {{- include "wavefront.validateValues" . }} 10 | -------------------------------------------------------------------------------- /bitnami/mongodb-sharded/templates/shard/shard-data-configmap.yaml: -------------------------------------------------------------------------------- 1 | {{- if and .Values.shards .Values.shardsvr.dataNode.config }} 2 | apiVersion: v1 3 | kind: ConfigMap 4 | metadata: 5 | name: {{ include "common.names.fullname" . }}-shardsvr-data 6 | labels: {{- include "common.labels.standard" . | nindent 4 }} 7 | app.kubernetes.io/component: shardsvr 8 | data: 9 | mongodb.conf: |- 10 | {{- include "common.tplvalues.render" (dict "value" .Values.shardsvr.dataNode.config "context" $) | indent 4 }} 11 | {{- end }} 12 | -------------------------------------------------------------------------------- /bitnami/postgresql-ha/files/conf.d/README.md: -------------------------------------------------------------------------------- 1 | If you don't want to provide the whole configuration file and only specify certain parameters, you can copy here your extended `.conf` files. 2 | These files will be injected as a config maps and add/overwrite the default configuration using the `include_dir` directive that allows settings to be loaded from files other than the default `postgresql.conf`. 3 | 4 | More info in the [bitnami-docker-postgresql-repmgr README](https://github.com/bitnami/bitnami-docker-postgresql#configuration-file). 5 | -------------------------------------------------------------------------------- /bitnami/fluentd/templates/tls-certs.yaml: -------------------------------------------------------------------------------- 1 | {{- if and (not .Values.tls.existingSecret) ( .Values.tls.enabled) }} 2 | apiVersion: v1 3 | kind: Secret 4 | metadata: 5 | name: {{ include "fluentd.fullname" . }}-tls 6 | labels: {{- include "fluentd.labels" . | nindent 4 }} 7 | type: kubernetes.io/tls 8 | data: 9 | tls.crt: {{ required "A valid .Values.tls.certificate entry required!" .Values.tls.certificate | b64enc }} 10 | tls.key: {{ required "A valid .Values.tls.key entry required!" .Values.tls.key | b64enc }} 11 | {{- end }} 12 | -------------------------------------------------------------------------------- /bitnami/etcd/templates/secrets.yaml: -------------------------------------------------------------------------------- 1 | {{- if and .Values.auth.rbac.enabled (not .Values.auth.rbac.existingSecret) -}} 2 | apiVersion: v1 3 | kind: Secret 4 | metadata: 5 | name: {{ include "etcd.fullname" . }} 6 | labels: {{- include "etcd.labels" . | nindent 4 }} 7 | type: Opaque 8 | data: 9 | {{- if .Values.auth.rbac.rootPassword }} 10 | etcd-root-password: {{ .Values.auth.rbac.rootPassword | b64enc | quote }} 11 | {{- else }} 12 | etcd-root-password: {{ randAlphaNum 10 | b64enc | quote }} 13 | {{- end }} 14 | {{- end }} 15 | -------------------------------------------------------------------------------- /bitnami/mongodb/templates/initialization-configmap.yaml: -------------------------------------------------------------------------------- 1 | {{- if and .Values.initdbScripts (not .Values.initdbScriptsConfigMap) }} 2 | apiVersion: v1 3 | kind: ConfigMap 4 | metadata: 5 | name: {{ include "mongodb.fullname" . }}-init-scripts 6 | namespace: {{ include "mongodb.namespace" . }} 7 | labels: {{- include "common.labels.standard" . | nindent 4 }} 8 | app.kubernetes.io/component: mongodb 9 | data: 10 | {{- include "common.tplvalues.render" (dict "value" .Values.initdbScripts "context" .) | nindent 2 }} 11 | {{- end }} 12 | -------------------------------------------------------------------------------- /bitnami/phabricator/templates/secrets.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: Secret 3 | metadata: 4 | name: {{ template "phabricator.fullname" . }} 5 | labels: {{- include "phabricator.labels" . | nindent 4 }} 6 | type: Opaque 7 | data: 8 | {{ if .Values.phabricatorPassword }} 9 | phabricator-password: {{ default "" .Values.phabricatorPassword | b64enc | quote }} 10 | {{ else }} 11 | phabricator-password: {{ randAlphaNum 10 | b64enc | quote }} 12 | {{ end }} 13 | smtp-password: {{ default "" .Values.smtpPassword | b64enc | quote }} 14 | -------------------------------------------------------------------------------- /bitnami/thanos/templates/query/sd-configmap.yaml: -------------------------------------------------------------------------------- 1 | {{- $query := (include "thanos.query.values" . | fromYaml) -}} 2 | {{- if (include "thanos.query.createSDConfigmap" .) }} 3 | apiVersion: v1 4 | kind: ConfigMap 5 | metadata: 6 | name: {{ include "thanos.fullname" . }}-query-sd-configmap 7 | labels: {{- include "thanos.labels" . | nindent 4 }} 8 | app.kubernetes.io/component: query 9 | data: 10 | servicediscovery.yml: |- 11 | {{- include "thanos.tplValue" (dict "value" $query.sdConfig "context" $) | nindent 4 }} 12 | {{ end }} 13 | -------------------------------------------------------------------------------- /bitnami/kibana/templates/tests/test-connection.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: Pod 3 | metadata: 4 | name: "{{ include "common.names.fullname" . }}-test-connection" 5 | labels: {{- include "common.labels.standard" . | nindent 4 }} 6 | app: test-connection 7 | annotations: 8 | "helm.sh/hook": test-success 9 | spec: 10 | containers: 11 | - name: wget 12 | image: bitnami/minideb 13 | command: ['wget'] 14 | args: ['{{ include "common.names.fullname" . }}:{{ .Values.service.port }}'] 15 | restartPolicy: Never 16 | -------------------------------------------------------------------------------- /bitnami/mongodb-sharded/templates/config-server/config-server-configmap.yaml: -------------------------------------------------------------------------------- 1 | {{- if and (not .Values.configsvr.external.host) .Values.configsvr.config }} 2 | apiVersion: v1 3 | kind: ConfigMap 4 | metadata: 5 | name: {{ include "common.names.fullname" . }}-configsvr 6 | labels: {{- include "common.labels.standard" . | nindent 4 }} 7 | app.kubernetes.io/component: configsvr 8 | data: 9 | mongodb.conf: |- 10 | {{- include "common.tplvalues.render" (dict "value" .Values.configsvr.config "context" $) | indent 4 }} 11 | {{- end }} 12 | -------------------------------------------------------------------------------- /bitnami/mongodb/templates/arbiter/configmap.yaml: -------------------------------------------------------------------------------- 1 | {{- if (include "mongodb.arbiter.createConfigmap" .) }} 2 | apiVersion: v1 3 | kind: ConfigMap 4 | metadata: 5 | name: {{ include "mongodb.fullname" . }}-arbiter 6 | namespace: {{ include "mongodb.namespace" . }} 7 | labels: {{- include "common.labels.standard" . | nindent 4 }} 8 | app.kubernetes.io/component: arbiter 9 | data: 10 | mongodb.conf: |- 11 | {{- include "common.tplvalues.render" (dict "value" .Values.arbiter.configuration "context" $) | nindent 4 }} 12 | {{- end }} 13 | -------------------------------------------------------------------------------- /bitnami/kube-prometheus/templates/prometheus-operator/configmap.yaml: -------------------------------------------------------------------------------- 1 | {{- if .Values.operator.enabled }} 2 | apiVersion: v1 3 | kind: ConfigMap 4 | metadata: 5 | name: {{ template "kube-prometheus.operator.fullname" . }} 6 | namespace: {{ .Release.Namespace }} 7 | labels: {{- include "kube-prometheus.operator.labels" . | nindent 4 }} 8 | data: 9 | config-reloader-image: {{ template "kube-prometheus.configmapReload.image" . }} 10 | prometheus-config-reloader: {{ template "kube-prometheus.prometheusConfigReloader.image" . }} 11 | {{- end }} 12 | -------------------------------------------------------------------------------- /bitnami/kubeapps/templates/assetsvc-service.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: Service 3 | metadata: 4 | name: {{ template "kubeapps.assetsvc.fullname" . }} 5 | labels:{{ include "kubeapps.extraAppLabels" . | nindent 4 }} 6 | app: {{ template "kubeapps.name" . }} 7 | spec: 8 | type: ClusterIP 9 | ports: 10 | - port: {{ .Values.assetsvc.service.port }} 11 | targetPort: http 12 | protocol: TCP 13 | name: http 14 | selector: 15 | app: {{ template "kubeapps.assetsvc.fullname" . }} 16 | release: {{ .Release.Name }} 17 | -------------------------------------------------------------------------------- /bitnami/mysql/templates/primary/initialization-configmap.yaml: -------------------------------------------------------------------------------- 1 | {{- if and .Values.initdbScripts (not .Values.initdbScriptsConfigMap) }} 2 | apiVersion: v1 3 | kind: ConfigMap 4 | metadata: 5 | name: {{ printf "%s-init-scripts" (include "mysql.primary.fullname" .) }} 6 | namespace: {{ .Release.Namespace }} 7 | labels: {{- include "common.labels.standard" . | nindent 4 }} 8 | app.kubernetes.io/component: primary 9 | data: 10 | {{- include "common.tplvalues.render" (dict "value" .Values.initdbScripts "context" .) | nindent 2 }} 11 | {{ end }} 12 | -------------------------------------------------------------------------------- /bitnami/redis/templates/secret.yaml: -------------------------------------------------------------------------------- 1 | {{- if and .Values.usePassword (not .Values.existingSecret) -}} 2 | apiVersion: v1 3 | kind: Secret 4 | metadata: 5 | name: {{ template "redis.fullname" . }} 6 | namespace: {{ .Release.Namespace | quote }} 7 | labels: 8 | app: {{ template "redis.name" . }} 9 | chart: {{ template "redis.chart" . }} 10 | release: "{{ .Release.Name }}" 11 | heritage: "{{ .Release.Service }}" 12 | type: Opaque 13 | data: 14 | redis-password: {{ include "redis.password" . | b64enc | quote }} 15 | {{- end -}} 16 | -------------------------------------------------------------------------------- /bitnami/mariadb-galera/ci/values-production-with-rbac.yaml: -------------------------------------------------------------------------------- 1 | # Test values file for generating all of the yaml and check that 2 | # the rendering is correct 3 | 4 | metrics: 5 | enabled: true 6 | 7 | podDisruptionBudget: 8 | create: true 9 | 10 | extraEnvVars: |- 11 | - name: TEST 12 | value: {{ include "common.names.fullname" . | quote }} 13 | 14 | extraEnvVarsSecret: example-secret 15 | extraEnvVarsCM: example-cm 16 | 17 | rbac: 18 | create: true 19 | 20 | serviceAccount: 21 | create: true 22 | name: mariadb-galera-service-account 23 | -------------------------------------------------------------------------------- /bitnami/mariadb/templates/primary/initialization-configmap.yaml: -------------------------------------------------------------------------------- 1 | {{- if and .Values.initdbScripts (not .Values.initdbScriptsConfigMap) }} 2 | apiVersion: v1 3 | kind: ConfigMap 4 | metadata: 5 | name: {{ printf "%s-init-scripts" (include "mariadb.primary.fullname" .) }} 6 | namespace: {{ .Release.Namespace }} 7 | labels: {{- include "common.labels.standard" . | nindent 4 }} 8 | app.kubernetes.io/component: primary 9 | data: 10 | {{- include "common.tplvalues.render" (dict "value" .Values.initdbScripts "context" .) | nindent 2 }} 11 | {{ end }} 12 | -------------------------------------------------------------------------------- /bitnami/spring-cloud-dataflow/templates/rolebinding.yaml: -------------------------------------------------------------------------------- 1 | {{- if .Values.rbac.create }} 2 | kind: RoleBinding 3 | apiVersion: rbac.authorization.k8s.io/v1 4 | metadata: 5 | name: {{ include "scdf.fullname" . }} 6 | labels: {{- include "common.labels.standard" . | nindent 4 }} 7 | roleRef: 8 | kind: Role 9 | name: {{ include "scdf.fullname" . }} 10 | apiGroup: rbac.authorization.k8s.io 11 | subjects: 12 | - kind: ServiceAccount 13 | name: {{ include "scdf.serviceAccountName" . }} 14 | namespace: {{ .Release.Namespace }} 15 | {{- end }} 16 | -------------------------------------------------------------------------------- /bitnami/minio/templates/svc-headless.yaml: -------------------------------------------------------------------------------- 1 | {{- if eq .Values.mode "distributed" }} 2 | apiVersion: v1 3 | kind: Service 4 | metadata: 5 | name: {{ include "common.names.fullname" . }}-headless 6 | namespace: {{ .Release.Namespace | quote }} 7 | labels: {{- include "common.labels.standard" . | nindent 4 }} 8 | spec: 9 | type: ClusterIP 10 | clusterIP: None 11 | ports: 12 | - name: minio 13 | port: {{ .Values.service.port }} 14 | targetPort: minio 15 | selector: {{- include "common.labels.matchLabels" . | nindent 4 }} 16 | {{- end }} 17 | -------------------------------------------------------------------------------- /bitnami/spring-cloud-dataflow/Chart.lock: -------------------------------------------------------------------------------- 1 | dependencies: 2 | - name: common 3 | repository: https://charts.bitnami.com/bitnami 4 | version: 1.1.1 5 | - name: mariadb 6 | repository: https://charts.bitnami.com/bitnami 7 | version: 9.0.1 8 | - name: rabbitmq 9 | repository: https://charts.bitnami.com/bitnami 10 | version: 8.3.0 11 | - name: kafka 12 | repository: https://charts.bitnami.com/bitnami 13 | version: 12.2.3 14 | digest: sha256:e59b7acacffd1c15ff41dca2bc5b463a416bc4f4d23adc49b6ea495f87c8d93c 15 | generated: "2020-12-04T09:35:55.919705082Z" 16 | -------------------------------------------------------------------------------- /bitnami/mariadb-galera/templates/rolebinding.yaml: -------------------------------------------------------------------------------- 1 | {{- if and .Values.serviceAccount.create .Values.rbac.create }} 2 | kind: RoleBinding 3 | apiVersion: rbac.authorization.k8s.io/v1 4 | metadata: 5 | name: {{ template "common.names.fullname" . }} 6 | labels: {{- include "common.labels.standard" . | nindent 4 }} 7 | subjects: 8 | - kind: ServiceAccount 9 | name: {{ template "mariadb-galera.serviceAccountName" . }} 10 | roleRef: 11 | apiGroup: rbac.authorization.k8s.io 12 | kind: Role 13 | name: {{ template "common.names.fullname" . }} 14 | {{- end }} 15 | -------------------------------------------------------------------------------- /bitnami/metallb/templates/service-accounts.yaml: -------------------------------------------------------------------------------- 1 | {{- if .Values.controller.serviceAccount.create }} 2 | --- 3 | apiVersion: v1 4 | kind: ServiceAccount 5 | metadata: 6 | name: {{ include "metallb.controllerServiceAccountName" . }} 7 | labels: {{- include "metallb.labels" . | nindent 4 }} 8 | {{- end }} 9 | {{- if .Values.speaker.serviceAccount.create }} 10 | --- 11 | apiVersion: v1 12 | kind: ServiceAccount 13 | metadata: 14 | name: {{ include "metallb.speakerServiceAccountName" . }} 15 | labels: {{- include "metallb.labels" . | nindent 4 }} 16 | {{- end }} 17 | -------------------------------------------------------------------------------- /bitnami/metrics-server/templates/metrics-api-service.yaml: -------------------------------------------------------------------------------- 1 | {{- if .Values.apiService.create -}} 2 | apiVersion: apiregistration.k8s.io/v1beta1 3 | kind: APIService 4 | metadata: 5 | name: v1beta1.metrics.k8s.io 6 | labels: {{- include "common.labels.standard" . | nindent 4 }} 7 | spec: 8 | service: 9 | name: {{ template "common.names.fullname" . }} 10 | namespace: {{ .Release.Namespace }} 11 | group: metrics.k8s.io 12 | version: v1beta1 13 | insecureSkipTLSVerify: true 14 | groupPriorityMinimum: 100 15 | versionPriority: 100 16 | {{- end -}} 17 | -------------------------------------------------------------------------------- /bitnami/contour/templates/certgen/serviceaccount.yaml: -------------------------------------------------------------------------------- 1 | {{- if and .Values.contour.certgen.serviceAccount.create (include "contour.contour-certgen.enabled" .) }} 2 | --- 3 | apiVersion: v1 4 | kind: ServiceAccount 5 | metadata: 6 | name: {{ include "contour.contourCertGenServiceAccountName" . }} 7 | annotations: 8 | "helm.sh/hook": "pre-install,pre-upgrade" 9 | "helm.sh/hook-delete-policy": before-hook-creation,hook-succeeded 10 | labels: {{- include "common.labels.standard" . | nindent 4 }} 11 | app.kubernetes.io/component: contour-certgen 12 | {{- end }} 13 | -------------------------------------------------------------------------------- /bitnami/etcd/templates/pdb.yaml: -------------------------------------------------------------------------------- 1 | {{- if .Values.pdb.enabled }} 2 | apiVersion: policy/v1beta1 3 | kind: PodDisruptionBudget 4 | metadata: 5 | name: {{ template "etcd.fullname" . }} 6 | labels: {{- include "etcd.labels" . | nindent 4 }} 7 | spec: 8 | {{- if .Values.pdb.minAvailable }} 9 | minAvailable: {{ .Values.pdb.minAvailable }} 10 | {{- end }} 11 | {{- if .Values.pdb.maxUnavailable }} 12 | maxUnavailable: {{ .Values.pdb.maxUnavailable }} 13 | {{- end }} 14 | selector: 15 | matchLabels: {{- include "etcd.matchLabels" . | nindent 6 }} 16 | {{- end }} 17 | -------------------------------------------------------------------------------- /bitnami/etcd/templates/snapshot-pvc.yaml: -------------------------------------------------------------------------------- 1 | {{- if and .Values.disasterRecovery.enabled (not .Values.disasterRecovery.pvc.existingClaim) -}} 2 | kind: PersistentVolumeClaim 3 | apiVersion: v1 4 | metadata: 5 | name: {{ include "etcd.fullname" . }}-snapshotter 6 | labels: {{- include "etcd.labels" . | nindent 4 }} 7 | spec: 8 | accessModes: 9 | - ReadWriteMany 10 | resources: 11 | requests: 12 | storage: {{ .Values.disasterRecovery.pvc.size | quote }} 13 | storageClassName: {{ .Values.disasterRecovery.pvc.storageClassName | quote }} 14 | {{- end -}} 15 | -------------------------------------------------------------------------------- /bitnami/mongodb-sharded/templates/shard/shard-arbiter-configmap.yaml: -------------------------------------------------------------------------------- 1 | {{- if and .Values.shards .Values.shardsvr.arbiter.replicas .Values.shardsvr.arbiter.config }} 2 | apiVersion: v1 3 | kind: ConfigMap 4 | metadata: 5 | name: {{ include "common.names.fullname" . }}-shardsvr-arbiter 6 | labels: {{- include "common.labels.standard" . | nindent 4 }} 7 | app.kubernetes.io/component: shardsvr-arbiter 8 | data: 9 | mongodb.conf: |- 10 | {{- include "common.tplvalues.render" (dict "value" .Values.shardsvr.arbiter.config "context" $) | indent 4 }} 11 | {{- end }} 12 | -------------------------------------------------------------------------------- /bitnami/pytorch/templates/pvc.yaml: -------------------------------------------------------------------------------- 1 | {{- if .Values.persistence.enabled }} 2 | kind: PersistentVolumeClaim 3 | apiVersion: v1 4 | metadata: 5 | name: {{ include "pytorch.fullname" . }}{{ if eq .Values.mode "distributed" }}-master{{ end }} 6 | labels: {{- include "pytorch.labels" . | nindent 4 }} 7 | spec: 8 | accessModes: 9 | {{- range .Values.persistence.accessModes }} 10 | - {{ . | quote }} 11 | {{- end }} 12 | resources: 13 | requests: 14 | storage: {{ .Values.persistence.size | quote }} 15 | {{ include "pytorch.storageClass" . }} 16 | {{- end }} 17 | -------------------------------------------------------------------------------- /bitnami/kubeapps/templates/apprepository-serviceaccount.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: ServiceAccount 3 | metadata: 4 | name: {{ template "kubeapps.apprepository.fullname" . }} 5 | labels:{{ include "kubeapps.extraAppLabels" . | nindent 4 }} 6 | app: {{ template "kubeapps.apprepository.fullname" . }} 7 | --- 8 | apiVersion: v1 9 | kind: ServiceAccount 10 | metadata: 11 | name: {{ template "kubeapps.apprepository-job-postupgrade.fullname" . }} 12 | labels:{{ include "kubeapps.extraAppLabels" . | nindent 4 }} 13 | app: {{ template "kubeapps.apprepository.fullname" . }} 14 | -------------------------------------------------------------------------------- /bitnami/kube-prometheus/templates/prometheus/additionalPrometheusRules.yaml: -------------------------------------------------------------------------------- 1 | {{- if and .Values.prometheus.enabled .Values.prometheus.additionalPrometheusRules}} 2 | {{- range .Values.prometheus.additionalPrometheusRules }} 3 | --- 4 | apiVersion: monitoring.coreos.com/v1 5 | kind: PrometheusRule 6 | metadata: 7 | name: {{ template "kube-prometheus.name" $ }}-{{ .name }} 8 | namespace: {{ $.Release.Namespace }} 9 | labels: {{ include "kube-prometheus.prometheus.labels" $ | nindent 4 }} 10 | spec: 11 | groups: {{- toYaml .groups | nindent 4 }} 12 | {{- end }} 13 | {{- end }} 14 | -------------------------------------------------------------------------------- /bitnami/nginx/templates/server-block-configmap.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: ConfigMap 3 | metadata: 4 | name: {{ template "common.names.fullname" . }}-server-block 5 | labels: {{- include "common.labels.standard" . | nindent 4 }} 6 | data: 7 | server-blocks-paths.conf: |- 8 | include "/opt/bitnami/nginx/conf/server_blocks/ldap/*.conf"; 9 | include "/opt/bitnami/nginx/conf/server_blocks/common/*.conf"; 10 | {{- if and .Values.serverBlock (not .Values.existingServerBlockConfigmap) }} 11 | server-block.conf: |- 12 | {{ .Values.serverBlock | indent 4 }} 13 | {{- end }} 14 | -------------------------------------------------------------------------------- /bitnami/postgresql/templates/metrics-configmap.yaml: -------------------------------------------------------------------------------- 1 | {{- if and .Values.metrics.enabled .Values.metrics.customMetrics }} 2 | apiVersion: v1 3 | kind: ConfigMap 4 | metadata: 5 | name: {{ template "postgresql.metricsCM" . }} 6 | labels: 7 | {{- include "common.labels.standard" . | nindent 4 }} 8 | {{- if .Values.commonAnnotations }} 9 | annotations: {{- include "common.tplvalues.render" ( dict "value" .Values.commonAnnotations "context" $ ) | nindent 4 }} 10 | {{- end }} 11 | data: 12 | custom-metrics.yaml: {{ toYaml .Values.metrics.customMetrics | quote }} 13 | {{- end }} 14 | -------------------------------------------------------------------------------- /bitnami/mariadb-galera/templates/prometheusrules.yaml: -------------------------------------------------------------------------------- 1 | {{- if and .Values.metrics.enabled .Values.metrics.prometheusRules.enabled }} 2 | apiVersion: monitoring.coreos.com/v1 3 | kind: PrometheusRule 4 | metadata: 5 | name: {{ template "common.names.fullname" . }} 6 | labels: {{- include "common.labels.standard" . | nindent 4 }} 7 | {{- toYaml .Values.metrics.prometheusRules.selector | nindent 4 }} 8 | spec: 9 | groups: 10 | - name: {{ include "common.names.fullname" . }} 11 | rules: 12 | {{- toYaml .Values.metrics.prometheusRules.rules | nindent 6 }} 13 | {{- end }} 14 | 15 | -------------------------------------------------------------------------------- /bitnami/minio/ci/values-production.yaml: -------------------------------------------------------------------------------- 1 | # Test values file for generating all of the yaml and check that 2 | # the rendering is correct 3 | 4 | volumePermissions: 5 | enabled: true 6 | 7 | mode: distributed 8 | 9 | useCredentialsFile: true 10 | 11 | disableWebUI: false 12 | 13 | podAnnotations: 14 | prometheus.io/scrape: "true" 15 | prometheus.io/path: "/minio/prometheus/metric" 16 | prometheus.io/port: "9000" 17 | 18 | resources: 19 | requests: 20 | cpu: 250m 21 | memory: 256Mi 22 | 23 | ingress: 24 | enabled: true 25 | 26 | networkPolicy: 27 | enabled: true 28 | -------------------------------------------------------------------------------- /bitnami/harbor/conf/clair.yaml: -------------------------------------------------------------------------------- 1 | clair: 2 | database: 3 | type: pgsql 4 | options: 5 | source: "{{ template "harbor.database.clair" . }}" 6 | # Number of elements kept in the cache 7 | # Values unlikely to change (e.g. namespaces) are cached in order to save prevent needless roundtrips to the database. 8 | cachesize: 16384 9 | api: 10 | # API server port 11 | port: 6060 12 | healthport: 6061 13 | # Deadline before an API request will respond with a 503 14 | timeout: 300s 15 | updater: 16 | interval: {{ .Values.clair.updatersInterval }}h 17 | -------------------------------------------------------------------------------- /bitnami/kube-prometheus/templates/prometheus-operator/psp-clusterrole.yaml: -------------------------------------------------------------------------------- 1 | {{- if and .Values.operator.enabled .Values.rbac.create .Values.rbac.pspEnabled }} 2 | kind: ClusterRole 3 | apiVersion: rbac.authorization.k8s.io/v1 4 | metadata: 5 | name: {{ template "kube-prometheus.operator.fullname" . }}-psp 6 | labels: {{- include "kube-prometheus.operator.labels" . | nindent 4 }} 7 | rules: 8 | - apiGroups: ['extensions'] 9 | resources: ['podsecuritypolicies'] 10 | verbs: ['use'] 11 | resourceNames: 12 | - {{ template "kube-prometheus.operator.fullname" . }} 13 | {{- end }} 14 | -------------------------------------------------------------------------------- /bitnami/kube-prometheus/templates/prometheus/psp-clusterrole.yaml: -------------------------------------------------------------------------------- 1 | {{- if and .Values.prometheus.enabled .Values.rbac.create .Values.rbac.pspEnabled }} 2 | kind: ClusterRole 3 | apiVersion: rbac.authorization.k8s.io/v1 4 | metadata: 5 | name: {{ template "kube-prometheus.prometheus.fullname" . }}-psp 6 | labels: {{- include "kube-prometheus.prometheus.labels" . | nindent 4 }} 7 | rules: 8 | - apiGroups: ['extensions'] 9 | resources: ['podsecuritypolicies'] 10 | verbs: ['use'] 11 | resourceNames: 12 | - {{ template "kube-prometheus.prometheus.fullname" . }} 13 | {{- end }} 14 | -------------------------------------------------------------------------------- /bitnami/mongodb-sharded/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- 1 | {{ include "mongodb-sharded.serviceaccount" (dict "value" .Values.common.serviceAccount "context" $) }} 2 | {{ include "mongodb-sharded.serviceaccount" (dict "value" .Values.mongos.serviceAccount "context" $) }} 3 | {{ include "mongodb-sharded.serviceaccount" (dict "value" .Values.configsvr.serviceAccount "context" $) }} 4 | {{ include "mongodb-sharded.serviceaccount" (dict "value" .Values.shardsvr.arbiter.serviceAccount "context" $) }} 5 | {{ include "mongodb-sharded.serviceaccount" (dict "value" .Values.shardsvr.dataNode.serviceAccount "context" $) }} 6 | -------------------------------------------------------------------------------- /bitnami/redis/templates/redis-serviceaccount.yaml: -------------------------------------------------------------------------------- 1 | {{- if .Values.serviceAccount.create -}} 2 | apiVersion: v1 3 | kind: ServiceAccount 4 | metadata: 5 | name: {{ template "redis.serviceAccountName" . }} 6 | namespace: {{ .Release.Namespace | quote }} 7 | labels: 8 | app: {{ template "redis.name" . }} 9 | chart: {{ template "redis.chart" . }} 10 | release: {{ .Release.Name }} 11 | heritage: {{ .Release.Service }} 12 | {{- if .Values.serviceAccount.annotations }} 13 | annotations: {{ toYaml .Values.serviceAccount.annotations | nindent 4 }} 14 | {{- end }} 15 | {{- end -}} 16 | -------------------------------------------------------------------------------- /bitnami/metrics-server/templates/metrics-server-crb.yaml: -------------------------------------------------------------------------------- 1 | {{- if .Values.rbac.create -}} 2 | apiVersion: rbac.authorization.k8s.io/v1 3 | kind: ClusterRoleBinding 4 | metadata: 5 | name: system:{{ template "common.names.fullname" . }} 6 | labels: {{- include "common.labels.standard" . | nindent 4 }} 7 | roleRef: 8 | apiGroup: rbac.authorization.k8s.io 9 | kind: ClusterRole 10 | name: system:{{ template "common.names.fullname" . }} 11 | subjects: 12 | - kind: ServiceAccount 13 | name: {{ template "common.names.fullname" . }} 14 | namespace: {{ .Release.Namespace }} 15 | {{- end -}} 16 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2020 Bitnami 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. 14 | -------------------------------------------------------------------------------- /bitnami/external-dns/templates/psp-clusterrolebinding.yaml: -------------------------------------------------------------------------------- 1 | {{- if .Values.rbac.pspEnabled }} 2 | apiVersion: rbac.authorization.k8s.io/v1 3 | kind: ClusterRoleBinding 4 | metadata: 5 | name: {{ template "external-dns.fullname" . }}-psp 6 | labels: {{ include "external-dns.labels" . | nindent 4 }} 7 | roleRef: 8 | apiGroup: rbac.authorization.k8s.io 9 | kind: ClusterRole 10 | name: {{ template "external-dns.fullname" . }}-psp 11 | subjects: 12 | - kind: ServiceAccount 13 | name: {{ template "external-dns.serviceAccountName" . }} 14 | namespace: {{ .Release.Namespace }} 15 | {{- end }} 16 | -------------------------------------------------------------------------------- /bitnami/kube-prometheus/templates/alertmanager/psp-clusterrole.yaml: -------------------------------------------------------------------------------- 1 | {{- if and .Values.alertmanager.enabled .Values.rbac.create .Values.rbac.pspEnabled }} 2 | kind: ClusterRole 3 | apiVersion: rbac.authorization.k8s.io/v1 4 | metadata: 5 | name: {{ template "kube-prometheus.alertmanager.fullname" . }}-psp 6 | labels: {{- include "kube-prometheus.alertmanager.labels" . | nindent 4 }} 7 | rules: 8 | - apiGroups: ['extensions'] 9 | resources: ['podsecuritypolicies'] 10 | verbs: ['use'] 11 | resourceNames: 12 | - {{ template "kube-prometheus.alertmanager.fullname" . }} 13 | {{- end }} 14 | -------------------------------------------------------------------------------- /bitnami/kube-state-metrics/templates/clusterrolebinding.yaml: -------------------------------------------------------------------------------- 1 | {{- if .Values.rbac.create }} 2 | apiVersion: rbac.authorization.k8s.io/v1 3 | kind: ClusterRoleBinding 4 | metadata: 5 | name: {{ template "common.names.fullname" . }} 6 | labels: {{- include "common.labels.standard" . | nindent 4 }} 7 | roleRef: 8 | apiGroup: rbac.authorization.k8s.io 9 | kind: ClusterRole 10 | name: {{ template "common.names.fullname" . }} 11 | subjects: 12 | - kind: ServiceAccount 13 | name: {{ template "kube-state-metrics.serviceAccountName" . }} 14 | namespace: {{ .Release.Namespace }} 15 | {{- end }} 16 | -------------------------------------------------------------------------------- /bitnami/thanos/templates/query/tls-server-secret.yaml: -------------------------------------------------------------------------------- 1 | {{- $query := (include "thanos.query.values" . | fromYaml) -}} 2 | {{- if $query.grpcTLS.server.secure -}} 3 | apiVersion: v1 4 | kind: Secret 5 | metadata: 6 | name: {{ include "thanos.fullname" . }}-query-tls-server 7 | labels: {{- include "thanos.labels" . | nindent 4 }} 8 | app.kubernetes.io/component: query 9 | type: Opaque 10 | data: 11 | cert.pem: {{ $query.grpcTLS.server.cert | b64enc | quote }} 12 | key.pem: {{ $query.grpcTLS.server.key | b64enc | quote }} 13 | ca.pem : {{ $query.grpcTLS.server.ca | b64enc | quote }} 14 | {{ end }} 15 | -------------------------------------------------------------------------------- /bitnami/kibana/templates/pvc.yaml: -------------------------------------------------------------------------------- 1 | {{- if and .Values.persistence.enabled (not .Values.persistence.existingClaim) }} 2 | kind: PersistentVolumeClaim 3 | apiVersion: v1 4 | metadata: 5 | name: {{ include "common.names.fullname" . }} 6 | labels: {{- include "common.labels.standard" . | nindent 4 }} 7 | spec: 8 | accessModes: 9 | - {{ .Values.persistence.accessMode | quote }} 10 | resources: 11 | requests: 12 | storage: {{ .Values.persistence.size | quote }} 13 | {{- include "common.storage.class" (dict "persistence" .Values.persistence "global" .Values.global) | nindent 2 }} 14 | {{- end -}} 15 | -------------------------------------------------------------------------------- /bitnami/grafana/templates/pvc.yaml: -------------------------------------------------------------------------------- 1 | {{- if and .Values.persistence.enabled (not .Values.persistence.existingClaim) }} 2 | kind: PersistentVolumeClaim 3 | apiVersion: v1 4 | metadata: 5 | name: {{ template "grafana.fullname" . }} 6 | namespace: {{ .Release.Namespace }} 7 | labels: {{- include "grafana.labels" . | nindent 4 }} 8 | app.kubernetes.io/component: grafana 9 | spec: 10 | accessModes: 11 | - {{ .Values.persistence.accessMode | quote }} 12 | resources: 13 | requests: 14 | storage: {{ .Values.persistence.size | quote }} 15 | {{ include "grafana.storageClass" . }} 16 | {{- end -}} 17 | -------------------------------------------------------------------------------- /bitnami/mariadb-galera/templates/configmap.yaml: -------------------------------------------------------------------------------- 1 | {{ if and (or (.Files.Glob "files/my.cnf") .Values.mariadbConfiguration) (not .Values.configurationConfigMap) }} 2 | apiVersion: v1 3 | kind: ConfigMap 4 | metadata: 5 | name: {{ printf "%s-configuration" (include "common.names.fullname" .) }} 6 | labels: {{- include "common.labels.standard" . | nindent 4 }} 7 | data: 8 | {{- if (.Files.Glob "files/my.cnf") }} 9 | {{ (.Files.Glob "files/my.cnf").AsConfig | indent 2 }} 10 | {{- else if .Values.mariadbConfiguration }} 11 | my.cnf: | 12 | {{ .Values.mariadbConfiguration | indent 4 }} 13 | {{- end }} 14 | {{ end }} 15 | -------------------------------------------------------------------------------- /bitnami/rabbitmq/templates/configuration.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: ConfigMap 3 | metadata: 4 | name: {{ template "rabbitmq.fullname" . }}-config 5 | namespace: {{ .Release.Namespace | quote }} 6 | labels: {{- include "common.labels.standard" . | nindent 4 }} 7 | data: 8 | rabbitmq.conf: |- 9 | {{- include "common.tplvalues.render" (dict "value" .Values.configuration "context" $) | nindent 4 }} 10 | {{- if .Values.advancedConfiguration}} 11 | advanced.config: |- 12 | {{- include "common.tplvalues.render" (dict "value" .Values.advancedConfiguration "context" $) | nindent 4 }} 13 | {{- end }} 14 | -------------------------------------------------------------------------------- /bitnami/fluentd/templates/forwarder-clusterrolebinding.yaml: -------------------------------------------------------------------------------- 1 | {{- if and .Values.forwarder.enabled .Values.forwarder.rbac.create }} 2 | kind: ClusterRoleBinding 3 | apiVersion: rbac.authorization.k8s.io/v1 4 | metadata: 5 | name: {{ include "fluentd.fullname" . }} 6 | labels: {{- include "fluentd.labels" . | nindent 4 }} 7 | roleRef: 8 | kind: ClusterRole 9 | apiGroup: rbac.authorization.k8s.io 10 | name: {{ template "fluentd.fullname" . }} 11 | subjects: 12 | - kind: ServiceAccount 13 | name: {{ template "fluentd.forwarder.serviceAccountName" . }} 14 | namespace: {{ .Release.Namespace }} 15 | {{- end }} 16 | -------------------------------------------------------------------------------- /bitnami/metrics-server/templates/role-binding.yaml: -------------------------------------------------------------------------------- 1 | {{- if .Values.rbac.create -}} 2 | apiVersion: rbac.authorization.k8s.io/v1 3 | kind: RoleBinding 4 | metadata: 5 | name: {{ printf "%s-auth-reader" (include "common.names.fullname" .) }} 6 | namespace: kube-system 7 | labels: {{- include "common.labels.standard" . | nindent 4 }} 8 | roleRef: 9 | apiGroup: rbac.authorization.k8s.io 10 | kind: Role 11 | name: extension-apiserver-authentication-reader 12 | subjects: 13 | - kind: ServiceAccount 14 | name: {{ template "common.names.fullname" . }} 15 | namespace: {{ .Release.Namespace }} 16 | {{- end -}} 17 | -------------------------------------------------------------------------------- /bitnami/rabbitmq/templates/rolebinding.yaml: -------------------------------------------------------------------------------- 1 | {{- if and .Values.serviceAccount.create .Values.rbac.create }} 2 | kind: RoleBinding 3 | apiVersion: rbac.authorization.k8s.io/v1 4 | metadata: 5 | name: {{ template "rabbitmq.fullname" . }}-endpoint-reader 6 | namespace: {{ .Release.Namespace | quote }} 7 | labels: {{- include "common.labels.standard" . | nindent 4 }} 8 | subjects: 9 | - kind: ServiceAccount 10 | name: {{ template "rabbitmq.serviceAccountName" . }} 11 | roleRef: 12 | apiGroup: rbac.authorization.k8s.io 13 | kind: Role 14 | name: {{ template "rabbitmq.fullname" . }}-endpoint-reader 15 | {{- end }} 16 | -------------------------------------------------------------------------------- /bitnami/metrics-server/templates/auth-delegator-crb.yaml: -------------------------------------------------------------------------------- 1 | {{- if .Values.rbac.create -}} 2 | apiVersion: rbac.authorization.k8s.io/v1 3 | kind: ClusterRoleBinding 4 | metadata: 5 | name: {{ printf "%s:system:auth-delegator" (include "common.names.fullname" .) }} 6 | namespace: kube-system 7 | labels: {{- include "common.labels.standard" . | nindent 4 }} 8 | roleRef: 9 | apiGroup: rbac.authorization.k8s.io 10 | kind: ClusterRole 11 | name: system:auth-delegator 12 | subjects: 13 | - kind: ServiceAccount 14 | name: {{ template "common.names.fullname" . }} 15 | namespace: {{ .Release.Namespace }} 16 | {{- end -}} 17 | -------------------------------------------------------------------------------- /bitnami/elasticsearch/templates/data-svc.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: Service 3 | metadata: 4 | name: {{ include "elasticsearch.data.fullname" . }} 5 | labels: {{- include "elasticsearch.labels" . | nindent 4 }} 6 | app.kubernetes.io/component: data 7 | spec: 8 | type: ClusterIP 9 | publishNotReadyAddresses: true 10 | ports: 11 | - name: http 12 | port: 9200 13 | targetPort: http 14 | - name: tcp-transport 15 | port: 9300 16 | targetPort: transport 17 | nodePort: null 18 | selector: {{- include "elasticsearch.matchLabels" . | nindent 4 }} 19 | app.kubernetes.io/component: data 20 | -------------------------------------------------------------------------------- /bitnami/influxdb/templates/influxdb/pvc-backup.yaml: -------------------------------------------------------------------------------- 1 | {{- if and .Values.backup.enabled .Values.persistence.enabled (not .Values.persistence.existingClaim) }} 2 | kind: PersistentVolumeClaim 3 | apiVersion: v1 4 | metadata: 5 | name: {{ include "influxdb.fullname" . }}-backups 6 | labels: 7 | {{- include "influxdb.labels" . | nindent 4 }} 8 | spec: 9 | accessModes: 10 | {{- range .Values.persistence.accessModes }} 11 | - {{ . | quote }} 12 | {{- end }} 13 | resources: 14 | requests: 15 | storage: {{ .Values.persistence.size | quote }} 16 | {{- include "influxdb.storageClass" . | nindent 2 }} 17 | {{- end }} 18 | -------------------------------------------------------------------------------- /bitnami/influxdb/templates/influxdb/pvc.yaml: -------------------------------------------------------------------------------- 1 | {{- if and (eq .Values.architecture "standalone") .Values.persistence.enabled (not .Values.persistence.existingClaim) }} 2 | kind: PersistentVolumeClaim 3 | apiVersion: v1 4 | metadata: 5 | name: {{ include "influxdb.fullname" . }} 6 | labels: 7 | {{- include "influxdb.labels" . | nindent 4 }} 8 | spec: 9 | accessModes: 10 | {{- range .Values.persistence.accessModes }} 11 | - {{ . | quote }} 12 | {{- end }} 13 | resources: 14 | requests: 15 | storage: {{ .Values.persistence.size | quote }} 16 | {{- include "influxdb.storageClass" . | nindent 2 }} 17 | {{- end }} 18 | -------------------------------------------------------------------------------- /bitnami/kube-prometheus/templates/alertmanager/secrets.yaml: -------------------------------------------------------------------------------- 1 | {{- if (and .Values.alertmanager.enabled (not .Values.alertmanager.externalConfig) ) }} 2 | apiVersion: v1 3 | kind: Secret 4 | metadata: 5 | name: alertmanager-{{ template "kube-prometheus.alertmanager.fullname" . }} 6 | namespace: {{ .Release.Namespace }} 7 | labels: {{- include "kube-prometheus.alertmanager.labels" . | nindent 4 }} 8 | data: 9 | alertmanager.yaml: {{ toYaml .Values.alertmanager.config | b64enc | quote }} 10 | {{- range $key, $val := .Values.alertmanager.templateFiles }} 11 | {{ $key }}: {{ $val | b64enc | quote }} 12 | {{- end }} 13 | {{- end }} 14 | -------------------------------------------------------------------------------- /bitnami/node-exporter/templates/psp-clusterrolebinding.yaml: -------------------------------------------------------------------------------- 1 | {{- if and .Values.rbac.create .Values.rbac.pspEnabled }} 2 | apiVersion: rbac.authorization.k8s.io/v1 3 | kind: ClusterRoleBinding 4 | metadata: 5 | name: {{ template "common.names.fullname" . }}-psp 6 | labels: {{- include "common.labels.standard" . | nindent 4 }} 7 | roleRef: 8 | apiGroup: rbac.authorization.k8s.io 9 | kind: ClusterRole 10 | name: {{ template "common.names.fullname" . }}-psp 11 | subjects: 12 | - kind: ServiceAccount 13 | name: {{ template "node-exporter.serviceAccountName" . }} 14 | namespace: {{ .Release.Namespace }} 15 | {{- end }} 16 | -------------------------------------------------------------------------------- /bitnami/kafka/files/jks/README.md: -------------------------------------------------------------------------------- 1 | # Java Key Stores 2 | 3 | You can copy here your Java Key Stores (JKS) files so a secret is created including them. Remember to use a truststore (`kafka.truststore.jks`) and one keystore (`kafka.keystore.jks`) per Kafka broker you have in the cluster. For instance, if you have 3 brokers you need to copy here the following files: 4 | 5 | - kafka.truststore.jks 6 | - kafka-0.keystore.jks 7 | - kafka-1.keystore.jks 8 | - kafka-2.keystore.jks 9 | 10 | Find more info in [this section](https://github.com/bitnami/charts/tree/master/bitnami/kafka#enable-security-for-kafka-and-zookeeper) of the README.md file. 11 | -------------------------------------------------------------------------------- /bitnami/owncloud/templates/secrets.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: Secret 3 | metadata: 4 | name: {{ template "owncloud.fullname" . }} 5 | labels: 6 | app.kubernetes.io/name: {{ include "owncloud.fullname" . }} 7 | helm.sh/chart: {{ include "owncloud.chart" . }} 8 | app.kubernetes.io/instance: {{ .Release.Name | quote }} 9 | app.kubernetes.io/managed-by: {{ .Release.Service | quote }} 10 | type: Opaque 11 | data: 12 | {{ if .Values.owncloudPassword }} 13 | owncloud-password: {{ .Values.owncloudPassword | b64enc | quote }} 14 | {{ else }} 15 | owncloud-password: {{ randAlphaNum 10 | b64enc | quote }} 16 | {{ end }} 17 | -------------------------------------------------------------------------------- /bitnami/external-dns/templates/clusterrolebinding.yaml: -------------------------------------------------------------------------------- 1 | {{- if and .Values.rbac.create .Values.rbac.clusterRole }} 2 | apiVersion: rbac.authorization.k8s.io/{{ .Values.rbac.apiVersion }} 3 | kind: ClusterRoleBinding 4 | metadata: 5 | name: {{ template "external-dns.fullname" . }} 6 | labels: {{ include "external-dns.labels" . | nindent 4 }} 7 | roleRef: 8 | apiGroup: rbac.authorization.k8s.io 9 | kind: ClusterRole 10 | name: {{ template "external-dns.fullname" . }} 11 | subjects: 12 | - kind: ServiceAccount 13 | name: {{ template "external-dns.serviceAccountName" . }} 14 | namespace: {{ .Release.Namespace }} 15 | {{- end }} 16 | -------------------------------------------------------------------------------- /bitnami/kube-state-metrics/templates/psp-clusterrolebinding.yaml: -------------------------------------------------------------------------------- 1 | {{- if and .Values.rbac.create .Values.rbac.pspEnabled }} 2 | apiVersion: rbac.authorization.k8s.io/v1 3 | kind: ClusterRoleBinding 4 | metadata: 5 | name: {{ template "common.names.fullname" . }}-psp 6 | labels: {{- include "common.labels.standard" . | nindent 4 }} 7 | roleRef: 8 | apiGroup: rbac.authorization.k8s.io 9 | kind: ClusterRole 10 | name: {{ template "common.names.fullname" . }}-psp 11 | subjects: 12 | - kind: ServiceAccount 13 | name: {{ template "kube-state-metrics.serviceAccountName" . }} 14 | namespace: {{ .Release.Namespace }} 15 | {{- end }} 16 | -------------------------------------------------------------------------------- /bitnami/mongodb/templates/rolebinding.yaml: -------------------------------------------------------------------------------- 1 | {{- if and .Values.serviceAccount.create .Values.rbac.create }} 2 | apiVersion: rbac.authorization.k8s.io/v1 3 | kind: RoleBinding 4 | metadata: 5 | name: {{ include "mongodb.fullname" . }} 6 | namespace: {{ include "mongodb.namespace" . }} 7 | labels: {{- include "common.labels.standard" . | nindent 4 }} 8 | roleRef: 9 | kind: Role 10 | name: {{ include "mongodb.fullname" . }} 11 | apiGroup: rbac.authorization.k8s.io 12 | subjects: 13 | - kind: ServiceAccount 14 | name: {{ include "mongodb.serviceAccountName" . }} 15 | namespace: {{ include "mongodb.namespace" . }} 16 | {{- end }} 17 | -------------------------------------------------------------------------------- /bitnami/osclass/templates/externaldb-secrets.yaml: -------------------------------------------------------------------------------- 1 | {{- if (not (or .Values.mariadb.enabled .Values.externalDatabase.existingSecret)) }} 2 | apiVersion: v1 3 | kind: Secret 4 | metadata: 5 | name: {{ printf "%s-%s" .Release.Name "externaldb" }} 6 | labels: 7 | app.kubernetes.io/name: {{ include "osclass.fullname" . }} 8 | helm.sh/chart: {{ include "osclass.chart" . }} 9 | app.kubernetes.io/instance: {{ .Release.Name | quote }} 10 | app.kubernetes.io/managed-by: {{ .Release.Service | quote }} 11 | type: Opaque 12 | data: 13 | mariadb-password: {{ default "" .Values.externalDatabase.password | b64enc | quote }} 14 | {{- end }} 15 | -------------------------------------------------------------------------------- /bitnami/kubeapps/templates/apprepositories-secret.yaml: -------------------------------------------------------------------------------- 1 | {{- range .Values.apprepository.initialRepos }} 2 | {{- if or .caCert .authorizationHeader }} 3 | apiVersion: v1 4 | kind: Secret 5 | metadata: 6 | name: {{ template "kubeapps.apprepository-secret.name" . }} 7 | annotations: 8 | "helm.sh/hook": pre-install 9 | labels:{{ include "kubeapps.labels" $ | nindent 4 }} 10 | data: 11 | {{- if .caCert }} 12 | ca.crt: |- 13 | {{ .caCert | b64enc }} 14 | {{- end }} 15 | {{- if .authorizationHeader }} 16 | authorizationHeader: |- 17 | {{ .authorizationHeader | b64enc }} 18 | {{- end }} 19 | --- 20 | {{- end }} 21 | {{- end }} 22 | -------------------------------------------------------------------------------- /bitnami/owncloud/templates/externaldb-secrets.yaml: -------------------------------------------------------------------------------- 1 | {{- if (not (or .Values.mariadb.enabled .Values.externalDatabase.existingSecret)) }} 2 | apiVersion: v1 3 | kind: Secret 4 | metadata: 5 | name: {{ printf "%s-%s" .Release.Name "externaldb" }} 6 | labels: 7 | app.kubernetes.io/name: {{ include "owncloud.fullname" . }} 8 | helm.sh/chart: {{ include "owncloud.chart" . }} 9 | app.kubernetes.io/instance: {{ .Release.Name | quote }} 10 | app.kubernetes.io/managed-by: {{ .Release.Service | quote }} 11 | type: Opaque 12 | data: 13 | mariadb-password: {{ default "" .Values.externalDatabase.password | b64enc | quote }} 14 | {{- end }} 15 | -------------------------------------------------------------------------------- /bitnami/rabbitmq/templates/pdb.yaml: -------------------------------------------------------------------------------- 1 | {{- if .Values.pdb.create }} 2 | apiVersion: policy/v1beta1 3 | kind: PodDisruptionBudget 4 | metadata: 5 | name: {{ include "rabbitmq.fullname" . }} 6 | namespace: {{ .Release.Namespace | quote }} 7 | labels: {{- include "common.labels.standard" . | nindent 4 }} 8 | spec: 9 | {{- if .Values.pdb.minAvailable }} 10 | minAvailable: {{ .Values.pdb.minAvailable }} 11 | {{- end }} 12 | {{- if .Values.pdb.maxUnavailable }} 13 | maxUnavailable: {{ .Values.pdb.maxUnavailable }} 14 | {{- end }} 15 | selector: 16 | matchLabels: {{ include "common.labels.matchLabels" . | nindent 6 }} 17 | {{- end }} 18 | -------------------------------------------------------------------------------- /bitnami/wildfly/Chart.yaml: -------------------------------------------------------------------------------- 1 | annotations: 2 | category: ApplicationServer 3 | apiVersion: v2 4 | appVersion: 21.0.1 5 | description: Chart for Wildfly 6 | engine: gotpl 7 | home: https://github.com/bitnami/charts/tree/master/bitnami/wildfly 8 | icon: https://bitnami.com/assets/stacks/wildfly/img/wildfly-stack-110x117.png 9 | keywords: 10 | - wildfly 11 | - java 12 | - http 13 | - web 14 | - application server 15 | - jsp 16 | maintainers: 17 | - email: containers@bitnami.com 18 | name: Bitnami 19 | name: wildfly 20 | sources: 21 | - https://github.com/bitnami/bitnami-docker-wildfly 22 | - http://wildfly.org 23 | version: 6.0.2 24 | -------------------------------------------------------------------------------- /bitnami/redis-cluster/templates/redis-serviceaccount.yaml: -------------------------------------------------------------------------------- 1 | {{- if .Values.serviceAccount.create -}} 2 | apiVersion: v1 3 | kind: ServiceAccount 4 | metadata: 5 | name: {{ template "redis-cluster.serviceAccountName" . }} 6 | labels: {{- include "common.labels.standard" . | nindent 4 }} 7 | {{- if .Values.commonLabels }} 8 | {{- include "common.tplvalues.render" ( dict "value" .Values.commonLabels "context" $ ) | nindent 4 }} 9 | {{- end }} 10 | {{- if .Values.commonAnnotations }} 11 | annotations: {{- include "common.tplvalues.render" ( dict "value" .Values.commonAnnotations "context" $ ) | nindent 4 }} 12 | {{- end }} 13 | {{- end -}} 14 | -------------------------------------------------------------------------------- /bitnami/tomcat/Chart.yaml: -------------------------------------------------------------------------------- 1 | annotations: 2 | category: ApplicationServer 3 | apiVersion: v2 4 | appVersion: 9.0.41 5 | description: Chart for Apache Tomcat 6 | engine: gotpl 7 | home: https://github.com/bitnami/charts/tree/master/bitnami/tomcat 8 | icon: https://bitnami.com/assets/stacks/tomcat/img/tomcat-stack-110x117.png 9 | keywords: 10 | - tomcat 11 | - java 12 | - http 13 | - web 14 | - application server 15 | - jsp 16 | maintainers: 17 | - email: containers@bitnami.com 18 | name: Bitnami 19 | name: tomcat 20 | sources: 21 | - https://github.com/bitnami/bitnami-docker-tomcat 22 | - http://tomcat.apache.org 23 | version: 7.1.2 24 | -------------------------------------------------------------------------------- /bitnami/kubernetes-event-exporter/templates/configmap.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: ConfigMap 3 | metadata: 4 | name: {{ include "common.names.fullname" . }} 5 | {{- if .Values.commonAnnotations }} 6 | annotations: {{- include "common.tplvalues.render" ( dict "value" .Values.commonAnnotations "context" $ ) | nindent 4 }} 7 | {{- end }} 8 | labels: {{- include "common.labels.standard" . | nindent 4}} 9 | {{- if .Values.commonLabels }} 10 | {{- include "common.tplvalues.render" ( dict "value" .Values.commonLabels "context" $ ) | nindent 4 }} 11 | {{- end }} 12 | data: 13 | config.yaml: | 14 | {{- toYaml .Values.config | nindent 4 }} 15 | -------------------------------------------------------------------------------- /bitnami/magento/templates/secrets.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: Secret 3 | metadata: 4 | name: {{ template "common.names.fullname" . }} 5 | labels: {{- include "common.labels.standard" . | nindent 4 }} 6 | {{- if .Values.commonLabels }} 7 | {{- include "common.tplvalues.render" ( dict "value" .Values.commonLabels "context" $ ) | nindent 4 }} 8 | {{- end }} 9 | {{- if .Values.commonAnnotations }} 10 | annotations: {{- include "common.tplvalues.render" ( dict "value" .Values.commonAnnotations "context" $ ) | nindent 4 }} 11 | {{- end }} 12 | type: Opaque 13 | data: 14 | magento-password: {{ b64enc (include "magento.password" .) | quote }} 15 | -------------------------------------------------------------------------------- /bitnami/mysql/ci/values-production-with-rbac.yaml: -------------------------------------------------------------------------------- 1 | # Test values file for generating all of the yaml and check that 2 | # the rendering is correct 3 | 4 | architecture: replication 5 | auth: 6 | usePasswordFiles: true 7 | 8 | primary: 9 | extraEnvVars: 10 | - name: TEST 11 | value: "3" 12 | podDisruptionBudget: 13 | create: true 14 | 15 | secondary: 16 | replicaCount: 2 17 | extraEnvVars: 18 | - name: TEST 19 | value: "2" 20 | podDisruptionBudget: 21 | create: true 22 | 23 | serviceAccount: 24 | create: true 25 | name: mysql-service-account 26 | rbac: 27 | create: true 28 | 29 | metrics: 30 | enabled: true 31 | -------------------------------------------------------------------------------- /bitnami/harbor/conf/notary-signer.json: -------------------------------------------------------------------------------- 1 | { 2 | "server": { 3 | "grpc_addr": ":7899", 4 | {{- if not .Values.notary.secretName }} 5 | "tls_cert_file": "/etc/notary/notary-signer.crt", 6 | "tls_key_file": "/etc/notary/notary-signer.key" 7 | {{- else }} 8 | "tls_cert_file": "/etc/ssl/notary/cert/notary-signer.crt", 9 | "tls_key_file": "/etc/ssl/notary/cert/notary-signer.key" 10 | {{- end }} 11 | }, 12 | "logging": { 13 | "level": "{{ .Values.logLevel }}" 14 | }, 15 | "storage": { 16 | "backend": "postgres", 17 | "db_url": "{{ template "harbor.database.notarySigner" . }}", 18 | "default_alias": "defaultalias" 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /bitnami/jasperreports/templates/externaldb-secrets.yaml: -------------------------------------------------------------------------------- 1 | {{- if not (or .Values.mariadb.enabled .Values.externalDatabase.existingSecret) }} 2 | apiVersion: v1 3 | kind: Secret 4 | metadata: 5 | name: {{ printf "%s-%s" .Release.Name "externaldb" }} 6 | labels: 7 | app.kubernetes.io/name: "{{ include "jasperreports.fullname" . }}" 8 | helm.sh/chart: "{{ include "jasperreports.chart" . }}" 9 | app.kubernetes.io/instance: {{ .Release.Name | quote }} 10 | app.kubernetes.io/managed-by: {{ .Release.Service | quote }} 11 | type: Opaque 12 | data: 13 | mariadb-password: {{ default "" .Values.externalDatabase.password | b64enc | quote }} 14 | {{- end }} 15 | -------------------------------------------------------------------------------- /bitnami/thanos/templates/ruler/serviceaccount.yaml: -------------------------------------------------------------------------------- 1 | 2 | {{- if and .Values.ruler.enabled (not (include "thanos.serviceaccount.use-existing" (dict "component" "ruler" "context" $))) -}} 3 | apiVersion: v1 4 | kind: ServiceAccount 5 | metadata: 6 | name: {{ include "thanos.serviceaccount.name" (dict "component" "ruler" "context" $) }} 7 | labels: {{- include "thanos.labels" . | nindent 4 }} 8 | app.kubernetes.io/component: ruler 9 | {{- if .Values.ruler.serviceAccount.annotations }} 10 | annotations: 11 | {{- include "thanos.tplValue" ( dict "value" .Values.ruler.serviceAccount.annotations "context" $) | nindent 4 }} 12 | {{- end }} 13 | {{- end }} 14 | -------------------------------------------------------------------------------- /bitnami/common/templates/_warnings.tpl: -------------------------------------------------------------------------------- 1 | {{/* vim: set filetype=mustache: */}} 2 | {{/* 3 | Warning about using rolling tag. 4 | Usage: 5 | {{ include "common.warnings.rollingTag" .Values.path.to.the.imageRoot }} 6 | */}} 7 | {{- define "common.warnings.rollingTag" -}} 8 | 9 | {{- if and (contains "bitnami/" .repository) (not (.tag | toString | regexFind "-r\\d+$|sha256:")) }} 10 | WARNING: Rolling tag detected ({{ .repository }}:{{ .tag }}), please note that it is strongly recommended to avoid using rolling tags in a production environment. 11 | +info https://docs.bitnami.com/containers/how-to/understand-rolling-tags-containers/ 12 | {{- end }} 13 | 14 | {{- end -}} 15 | -------------------------------------------------------------------------------- /bitnami/elasticsearch/templates/configmap-curator.yaml: -------------------------------------------------------------------------------- 1 | {{- if .Values.curator.enabled }} 2 | apiVersion: v1 3 | kind: ConfigMap 4 | metadata: 5 | name: {{ include "elasticsearch.curator.fullname" . }} 6 | labels: {{- include "elasticsearch.labels" . | nindent 4 }} 7 | app.kubernetes.io/component: curator 8 | data: 9 | action_file.yml: {{ required "A valid .Values.curator.configMaps.action_file_yml entry is required!" (toYaml .Values.curator.configMaps.action_file_yml | indent 2) }} 10 | config.yml: {{ required "A valid .Values.curator.configMaps.config_yml entry is required!" (tpl (toYaml .Values.curator.configMaps.config_yml | indent 2) $) }} 11 | {{- end }} 12 | -------------------------------------------------------------------------------- /bitnami/external-dns/templates/rolebindings.yaml: -------------------------------------------------------------------------------- 1 | {{- if and .Values.rbac.create (not .Values.rbac.clusterRole) }} 2 | apiVersion: rbac.authorization.k8s.io/{{ .Values.rbac.apiVersion }} 3 | kind: RoleBinding 4 | metadata: 5 | name: {{ template "external-dns.fullname" . }} 6 | namespace: {{ .Values.namespace }} 7 | labels: {{ include "external-dns.labels" . | nindent 4 }} 8 | roleRef: 9 | apiGroup: rbac.authorization.k8s.io 10 | kind: Role 11 | name: {{ template "external-dns.fullname" . }} 12 | subjects: 13 | - kind: ServiceAccount 14 | name: {{ template "external-dns.serviceAccountName" . }} 15 | namespace: {{ .Release.Namespace }} 16 | {{- end }} 17 | -------------------------------------------------------------------------------- /bitnami/redis/templates/redis-rolebinding.yaml: -------------------------------------------------------------------------------- 1 | {{- if .Values.rbac.create -}} 2 | apiVersion: rbac.authorization.k8s.io/v1 3 | kind: RoleBinding 4 | metadata: 5 | name: {{ template "redis.fullname" . }} 6 | namespace: {{ .Release.Namespace | quote }} 7 | labels: 8 | app: {{ template "redis.name" . }} 9 | chart: {{ template "redis.chart" . }} 10 | release: {{ .Release.Name }} 11 | heritage: {{ .Release.Service }} 12 | roleRef: 13 | apiGroup: rbac.authorization.k8s.io 14 | kind: Role 15 | name: {{ template "redis.fullname" . }} 16 | subjects: 17 | - kind: ServiceAccount 18 | name: {{ template "redis.serviceAccountName" . }} 19 | {{- end -}} 20 | -------------------------------------------------------------------------------- /bitnami/kafka/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- 1 | {{- if .Values.serviceAccount.create }} 2 | apiVersion: v1 3 | kind: ServiceAccount 4 | metadata: 5 | name: {{ template "kafka.serviceAccountName" . }} 6 | labels: {{- include "common.labels.standard" . | nindent 4 }} 7 | app.kubernetes.io/component: kafka 8 | {{- if .Values.commonLabels }} 9 | {{- include "common.tplvalues.render" ( dict "value" .Values.commonLabels "context" $ ) | nindent 4 }} 10 | {{- end }} 11 | {{- if .Values.commonAnnotations }} 12 | annotations: {{- include "common.tplvalues.render" ( dict "value" .Values.commonAnnotations "context" $ ) | nindent 4 }} 13 | {{- end }} 14 | {{- end }} 15 | -------------------------------------------------------------------------------- /bitnami/kubernetes-event-exporter/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- 1 | {{- if .Values.serviceAccount.create -}} 2 | apiVersion: v1 3 | kind: ServiceAccount 4 | metadata: 5 | name: {{ template "kubernetes-event-exporter.serviceAccountName" . }} 6 | {{- if .Values.commonAnnotations }} 7 | annotations: {{- include "common.tplvalues.render" ( dict "value" .Values.commonAnnotations "context" $ ) | nindent 4 }} 8 | {{- end }} 9 | labels: {{- include "common.labels.standard" . | nindent 4 }} 10 | {{- if .Values.commonLabels }} 11 | {{- include "common.tplvalues.render" ( dict "value" .Values.commonLabels "context" $ ) | nindent 4 }} 12 | {{- end }} 13 | {{- end }} 14 | -------------------------------------------------------------------------------- /bitnami/mxnet/templates/deployment-pvc.yaml: -------------------------------------------------------------------------------- 1 | {{- if .Values.persistence.enabled }} 2 | kind: PersistentVolumeClaim 3 | apiVersion: v1 4 | metadata: 5 | name: {{ include "common.names.fullname" . }}{{ if eq .Values.mode "distributed" }}-scheduler{{ end }} 6 | labels: {{- include "common.labels.standard" . | nindent 4 }} 7 | spec: 8 | accessModes: 9 | {{- range .Values.persistence.accessModes }} 10 | - {{ . | quote }} 11 | {{- end }} 12 | resources: 13 | requests: 14 | storage: {{ .Values.persistence.size | quote }} 15 | {{- include "common.storage.class" (dict "persistence" .Values.persistence "global" .Values.global) | nindent 2 }} 16 | {{- end }} 17 | -------------------------------------------------------------------------------- /bitnami/suitecrm/templates/suitecrm-pvc.yaml: -------------------------------------------------------------------------------- 1 | {{- if .Values.persistence.enabled -}} 2 | kind: PersistentVolumeClaim 3 | apiVersion: v1 4 | metadata: 5 | name: {{ include "suitecrm.fullname" . }}-suitecrm 6 | labels: {{- include "common.labels.standard" . | nindent 4 }} 7 | {{- if .Values.commonLabels }} 8 | {{- include "common.tplvalues.render" (dict "value" .Values.commonLabels "context" $) | nindent 4 }} 9 | {{- end }} 10 | spec: 11 | accessModes: 12 | - {{ .Values.persistence.accessMode | quote }} 13 | resources: 14 | requests: 15 | storage: {{ .Values.persistence.size | quote }} 16 | {{ include "suitecrm.storageClass" . }} 17 | {{- end -}} 18 | --------------------------------------------------------------------------------