├── .gitignore ├── LICENSE.txt ├── Makefile ├── README.md ├── common ├── .helmignore ├── Chart.yaml ├── README.md ├── templates │ ├── _chartref.tpl │ ├── _configmap.yaml │ ├── _deployment.yaml │ ├── _fullname.tpl │ ├── _job.yaml │ ├── _metadata.yaml │ ├── _metadata_annotations.tpl │ ├── _metadata_labels.tpl │ ├── _pod.yaml │ ├── _port.tpl │ ├── _secret.yaml │ └── _svc.yaml └── values.yaml ├── docs ├── common-0.0.1.tgz ├── common-0.0.1.tgz.prov ├── index.md └── index.yaml └── tests ├── .helmignore ├── Chart.yaml ├── charts ├── annotations │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ │ └── hooks.yaml │ └── values.yaml ├── chartref │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ │ └── chartref.yaml │ └── values.yaml ├── configmap │ ├── .helmignore │ ├── Chart.yaml │ ├── file1.txt │ ├── templates │ │ └── configmap.yaml │ └── values.yaml ├── fullname │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ │ └── fullname.yaml │ └── values.yaml ├── fullname2 │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ │ └── fullname.yaml │ └── values.yaml ├── job │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ │ └── job.yaml │ └── values.yaml ├── labelizer │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ │ └── labelize.yaml │ └── values.yaml ├── metadata │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ │ └── metadata.yaml │ └── values.yaml ├── pod │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ │ └── pod.yaml │ └── values.yaml ├── port │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ │ └── port.yaml │ └── values.yaml ├── secret │ ├── .helmignore │ ├── Chart.yaml │ ├── file1.txt │ ├── templates │ │ └── secret.yaml │ └── values.yaml └── service │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ └── service.yaml │ └── values.yaml ├── test.sh └── values.yaml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technosophos/common-chart/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technosophos/common-chart/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technosophos/common-chart/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technosophos/common-chart/HEAD/README.md -------------------------------------------------------------------------------- /common/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technosophos/common-chart/HEAD/common/.helmignore -------------------------------------------------------------------------------- /common/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technosophos/common-chart/HEAD/common/Chart.yaml -------------------------------------------------------------------------------- /common/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technosophos/common-chart/HEAD/common/README.md -------------------------------------------------------------------------------- /common/templates/_chartref.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technosophos/common-chart/HEAD/common/templates/_chartref.tpl -------------------------------------------------------------------------------- /common/templates/_configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technosophos/common-chart/HEAD/common/templates/_configmap.yaml -------------------------------------------------------------------------------- /common/templates/_deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technosophos/common-chart/HEAD/common/templates/_deployment.yaml -------------------------------------------------------------------------------- /common/templates/_fullname.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technosophos/common-chart/HEAD/common/templates/_fullname.tpl -------------------------------------------------------------------------------- /common/templates/_job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technosophos/common-chart/HEAD/common/templates/_job.yaml -------------------------------------------------------------------------------- /common/templates/_metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technosophos/common-chart/HEAD/common/templates/_metadata.yaml -------------------------------------------------------------------------------- /common/templates/_metadata_annotations.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technosophos/common-chart/HEAD/common/templates/_metadata_annotations.tpl -------------------------------------------------------------------------------- /common/templates/_metadata_labels.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technosophos/common-chart/HEAD/common/templates/_metadata_labels.tpl -------------------------------------------------------------------------------- /common/templates/_pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technosophos/common-chart/HEAD/common/templates/_pod.yaml -------------------------------------------------------------------------------- /common/templates/_port.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technosophos/common-chart/HEAD/common/templates/_port.tpl -------------------------------------------------------------------------------- /common/templates/_secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technosophos/common-chart/HEAD/common/templates/_secret.yaml -------------------------------------------------------------------------------- /common/templates/_svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technosophos/common-chart/HEAD/common/templates/_svc.yaml -------------------------------------------------------------------------------- /common/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technosophos/common-chart/HEAD/common/values.yaml -------------------------------------------------------------------------------- /docs/common-0.0.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technosophos/common-chart/HEAD/docs/common-0.0.1.tgz -------------------------------------------------------------------------------- /docs/common-0.0.1.tgz.prov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technosophos/common-chart/HEAD/docs/common-0.0.1.tgz.prov -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technosophos/common-chart/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technosophos/common-chart/HEAD/docs/index.yaml -------------------------------------------------------------------------------- /tests/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technosophos/common-chart/HEAD/tests/.helmignore -------------------------------------------------------------------------------- /tests/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technosophos/common-chart/HEAD/tests/Chart.yaml -------------------------------------------------------------------------------- /tests/charts/annotations/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technosophos/common-chart/HEAD/tests/charts/annotations/.helmignore -------------------------------------------------------------------------------- /tests/charts/annotations/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technosophos/common-chart/HEAD/tests/charts/annotations/Chart.yaml -------------------------------------------------------------------------------- /tests/charts/annotations/templates/hooks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technosophos/common-chart/HEAD/tests/charts/annotations/templates/hooks.yaml -------------------------------------------------------------------------------- /tests/charts/annotations/values.yaml: -------------------------------------------------------------------------------- 1 | # Default values 2 | -------------------------------------------------------------------------------- /tests/charts/chartref/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technosophos/common-chart/HEAD/tests/charts/chartref/.helmignore -------------------------------------------------------------------------------- /tests/charts/chartref/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technosophos/common-chart/HEAD/tests/charts/chartref/Chart.yaml -------------------------------------------------------------------------------- /tests/charts/chartref/templates/chartref.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technosophos/common-chart/HEAD/tests/charts/chartref/templates/chartref.yaml -------------------------------------------------------------------------------- /tests/charts/chartref/values.yaml: -------------------------------------------------------------------------------- 1 | # Default values 2 | -------------------------------------------------------------------------------- /tests/charts/configmap/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technosophos/common-chart/HEAD/tests/charts/configmap/.helmignore -------------------------------------------------------------------------------- /tests/charts/configmap/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technosophos/common-chart/HEAD/tests/charts/configmap/Chart.yaml -------------------------------------------------------------------------------- /tests/charts/configmap/file1.txt: -------------------------------------------------------------------------------- 1 | This is a file. 2 | -------------------------------------------------------------------------------- /tests/charts/configmap/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technosophos/common-chart/HEAD/tests/charts/configmap/templates/configmap.yaml -------------------------------------------------------------------------------- /tests/charts/configmap/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technosophos/common-chart/HEAD/tests/charts/configmap/values.yaml -------------------------------------------------------------------------------- /tests/charts/fullname/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technosophos/common-chart/HEAD/tests/charts/fullname/.helmignore -------------------------------------------------------------------------------- /tests/charts/fullname/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technosophos/common-chart/HEAD/tests/charts/fullname/Chart.yaml -------------------------------------------------------------------------------- /tests/charts/fullname/templates/fullname.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technosophos/common-chart/HEAD/tests/charts/fullname/templates/fullname.yaml -------------------------------------------------------------------------------- /tests/charts/fullname/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technosophos/common-chart/HEAD/tests/charts/fullname/values.yaml -------------------------------------------------------------------------------- /tests/charts/fullname2/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technosophos/common-chart/HEAD/tests/charts/fullname2/.helmignore -------------------------------------------------------------------------------- /tests/charts/fullname2/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technosophos/common-chart/HEAD/tests/charts/fullname2/Chart.yaml -------------------------------------------------------------------------------- /tests/charts/fullname2/templates/fullname.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technosophos/common-chart/HEAD/tests/charts/fullname2/templates/fullname.yaml -------------------------------------------------------------------------------- /tests/charts/fullname2/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technosophos/common-chart/HEAD/tests/charts/fullname2/values.yaml -------------------------------------------------------------------------------- /tests/charts/job/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technosophos/common-chart/HEAD/tests/charts/job/.helmignore -------------------------------------------------------------------------------- /tests/charts/job/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technosophos/common-chart/HEAD/tests/charts/job/Chart.yaml -------------------------------------------------------------------------------- /tests/charts/job/templates/job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technosophos/common-chart/HEAD/tests/charts/job/templates/job.yaml -------------------------------------------------------------------------------- /tests/charts/job/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technosophos/common-chart/HEAD/tests/charts/job/values.yaml -------------------------------------------------------------------------------- /tests/charts/labelizer/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technosophos/common-chart/HEAD/tests/charts/labelizer/.helmignore -------------------------------------------------------------------------------- /tests/charts/labelizer/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technosophos/common-chart/HEAD/tests/charts/labelizer/Chart.yaml -------------------------------------------------------------------------------- /tests/charts/labelizer/templates/labelize.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technosophos/common-chart/HEAD/tests/charts/labelizer/templates/labelize.yaml -------------------------------------------------------------------------------- /tests/charts/labelizer/values.yaml: -------------------------------------------------------------------------------- 1 | # Default values 2 | -------------------------------------------------------------------------------- /tests/charts/metadata/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technosophos/common-chart/HEAD/tests/charts/metadata/.helmignore -------------------------------------------------------------------------------- /tests/charts/metadata/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technosophos/common-chart/HEAD/tests/charts/metadata/Chart.yaml -------------------------------------------------------------------------------- /tests/charts/metadata/templates/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technosophos/common-chart/HEAD/tests/charts/metadata/templates/metadata.yaml -------------------------------------------------------------------------------- /tests/charts/metadata/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technosophos/common-chart/HEAD/tests/charts/metadata/values.yaml -------------------------------------------------------------------------------- /tests/charts/pod/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technosophos/common-chart/HEAD/tests/charts/pod/.helmignore -------------------------------------------------------------------------------- /tests/charts/pod/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technosophos/common-chart/HEAD/tests/charts/pod/Chart.yaml -------------------------------------------------------------------------------- /tests/charts/pod/templates/pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technosophos/common-chart/HEAD/tests/charts/pod/templates/pod.yaml -------------------------------------------------------------------------------- /tests/charts/pod/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technosophos/common-chart/HEAD/tests/charts/pod/values.yaml -------------------------------------------------------------------------------- /tests/charts/port/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technosophos/common-chart/HEAD/tests/charts/port/.helmignore -------------------------------------------------------------------------------- /tests/charts/port/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technosophos/common-chart/HEAD/tests/charts/port/Chart.yaml -------------------------------------------------------------------------------- /tests/charts/port/templates/port.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technosophos/common-chart/HEAD/tests/charts/port/templates/port.yaml -------------------------------------------------------------------------------- /tests/charts/port/values.yaml: -------------------------------------------------------------------------------- 1 | # Default values 2 | -------------------------------------------------------------------------------- /tests/charts/secret/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technosophos/common-chart/HEAD/tests/charts/secret/.helmignore -------------------------------------------------------------------------------- /tests/charts/secret/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technosophos/common-chart/HEAD/tests/charts/secret/Chart.yaml -------------------------------------------------------------------------------- /tests/charts/secret/file1.txt: -------------------------------------------------------------------------------- 1 | This is a file. 2 | -------------------------------------------------------------------------------- /tests/charts/secret/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technosophos/common-chart/HEAD/tests/charts/secret/templates/secret.yaml -------------------------------------------------------------------------------- /tests/charts/secret/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technosophos/common-chart/HEAD/tests/charts/secret/values.yaml -------------------------------------------------------------------------------- /tests/charts/service/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technosophos/common-chart/HEAD/tests/charts/service/.helmignore -------------------------------------------------------------------------------- /tests/charts/service/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technosophos/common-chart/HEAD/tests/charts/service/Chart.yaml -------------------------------------------------------------------------------- /tests/charts/service/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technosophos/common-chart/HEAD/tests/charts/service/templates/service.yaml -------------------------------------------------------------------------------- /tests/charts/service/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technosophos/common-chart/HEAD/tests/charts/service/values.yaml -------------------------------------------------------------------------------- /tests/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technosophos/common-chart/HEAD/tests/test.sh -------------------------------------------------------------------------------- /tests/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technosophos/common-chart/HEAD/tests/values.yaml --------------------------------------------------------------------------------