├── .gitignore ├── LICENSE ├── README.md └── packs ├── C++ ├── .dockerignore ├── .helmignore ├── Dockerfile ├── charts │ ├── .helmignore │ ├── Chart.yaml │ ├── Makefile │ ├── README.md │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── canary.yaml │ │ ├── deployment.yaml │ │ ├── hpa.yaml │ │ ├── ingress.yaml │ │ ├── ksvc.yaml │ │ └── service.yaml │ └── values.yaml ├── pipeline.yaml ├── preview │ ├── Chart.yaml │ ├── Makefile │ ├── requirements.yaml │ └── values.yaml └── skaffold.yaml ├── D ├── .dockerignore ├── .helmignore ├── Dockerfile ├── charts │ ├── .helmignore │ ├── Chart.yaml │ ├── Makefile │ ├── README.md │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── canary.yaml │ │ ├── deployment.yaml │ │ ├── hpa.yaml │ │ ├── ingress.yaml │ │ ├── ksvc.yaml │ │ └── service.yaml │ └── values.yaml ├── pipeline.yaml ├── preview │ ├── Chart.yaml │ ├── Makefile │ ├── requirements.yaml │ └── values.yaml └── skaffold.yaml ├── apps └── pipeline.yaml ├── appserver ├── .dockerignore ├── .gitignore ├── .helmignore ├── Dockerfile ├── charts │ ├── .helmignore │ ├── Chart.yaml │ ├── Makefile │ ├── README.md │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── canary.yaml │ │ ├── deployment.yaml │ │ ├── hpa.yaml │ │ ├── ingress.yaml │ │ ├── ksvc.yaml │ │ └── service.yaml │ └── values.yaml ├── pipeline.yaml ├── preview │ ├── Chart.yaml │ ├── Makefile │ ├── requirements.yaml │ └── values.yaml └── skaffold.yaml ├── charts └── pipeline.yaml ├── csharp ├── .dockerignore ├── .helmignore ├── Dockerfile ├── charts │ ├── .helmignore │ ├── Chart.yaml │ ├── Makefile │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── canary.yaml │ │ ├── deployment.yaml │ │ ├── hpa.yaml │ │ ├── ingress.yaml │ │ ├── ksvc.yaml │ │ └── service.yaml │ └── values.yaml ├── pipeline.yaml ├── preview │ ├── Chart.yaml │ ├── Makefile │ ├── requirements.yaml │ ├── templates │ │ └── deployment.yaml │ └── values.yaml └── skaffold.yaml ├── custom-jenkins └── pipeline.yaml ├── cwp ├── .dockerignore ├── .gitignore ├── .helmignore ├── Dockerfile ├── Makefile ├── charts │ ├── .helmignore │ ├── Chart.yaml │ ├── Makefile │ ├── README.md │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── canary.yaml │ │ ├── deployment.yaml │ │ ├── hpa.yaml │ │ ├── ingress.yaml │ │ ├── ksvc.yaml │ │ └── service.yaml │ └── values.yaml ├── pipeline.yaml ├── preview │ ├── Chart.yaml │ ├── Makefile │ ├── requirements.yaml │ └── values.yaml ├── skaffold.yaml └── watch.sh ├── docker-helm ├── pipeline.yaml └── skaffold.yaml ├── docker ├── pipeline.yaml └── skaffold.yaml ├── dropwizard ├── .dockerignore ├── .gitignore ├── .helmignore ├── Dockerfile ├── charts │ ├── .helmignore │ ├── Chart.yaml │ ├── Makefile │ ├── README.md │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── canary.yaml │ │ ├── deployment.yaml │ │ ├── hpa.yaml │ │ ├── ingress.yaml │ │ ├── ksvc.yaml │ │ └── service.yaml │ └── values.yaml ├── pipeline.yaml ├── preview │ ├── Chart.yaml │ ├── Makefile │ ├── requirements.yaml │ └── values.yaml ├── skaffold.yaml └── watch.sh ├── environment-helmfile └── pipeline.yaml ├── environment └── pipeline.yaml ├── git └── pipeline.yaml ├── go-mongodb ├── .dockerignore ├── .helmignore ├── Dockerfile ├── Makefile ├── charts │ ├── .helmignore │ ├── Chart.yaml │ ├── Makefile │ ├── README.md │ ├── requirements.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── canary.yaml │ │ ├── deployment.yaml │ │ ├── hpa.yaml │ │ ├── ingress.yaml │ │ ├── ksvc.yaml │ │ └── service.yaml │ └── values.yaml ├── pipeline.yaml ├── preview │ ├── Chart.yaml │ ├── Makefile │ ├── requirements.yaml │ └── values.yaml ├── skaffold.yaml └── watch.sh ├── go ├── .dockerignore ├── .helmignore ├── Dockerfile ├── Makefile ├── charts │ ├── .helmignore │ ├── Chart.yaml │ ├── Makefile │ ├── README.md │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── canary.yaml │ │ ├── deployment.yaml │ │ ├── hpa.yaml │ │ ├── ingress.yaml │ │ ├── ksvc.yaml │ │ └── service.yaml │ └── values.yaml ├── pipeline.yaml ├── preview │ ├── Chart.yaml │ ├── Makefile │ ├── requirements.yaml │ └── values.yaml ├── skaffold.yaml └── watch.sh ├── gradle ├── .dockerignore ├── .helmignore ├── Dockerfile ├── charts │ ├── .helmignore │ ├── Chart.yaml │ ├── Makefile │ ├── README.md │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── canary.yaml │ │ ├── deployment.yaml │ │ ├── hpa.yaml │ │ ├── ingress.yaml │ │ ├── ksvc.yaml │ │ └── service.yaml │ └── values.yaml ├── pipeline.yaml ├── preview │ ├── Chart.yaml │ ├── Makefile │ ├── requirements.yaml │ └── values.yaml ├── skaffold.yaml └── watch.sh ├── helm └── pipeline.yaml ├── imports.yaml ├── javascript-ui-nginx ├── .dockerignore ├── .helmignore ├── Dockerfile ├── charts │ ├── .helmignore │ ├── Chart.yaml │ ├── Makefile │ ├── README.md │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── canary.yaml │ │ ├── deployment.yaml │ │ ├── hpa.yaml │ │ ├── ingress.yaml │ │ ├── ksvc.yaml │ │ └── service.yaml │ └── values.yaml ├── pipeline.yaml ├── preview │ ├── Chart.yaml │ ├── Makefile │ ├── requirements.yaml │ └── values.yaml └── skaffold.yaml ├── javascript ├── .dockerignore ├── .helmignore ├── Dockerfile ├── charts │ ├── .helmignore │ ├── Chart.yaml │ ├── Makefile │ ├── README.md │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── canary.yaml │ │ ├── deployment.yaml │ │ ├── hpa.yaml │ │ ├── ingress.yaml │ │ ├── ksvc.yaml │ │ └── service.yaml │ └── values.yaml ├── pipeline.yaml ├── preview │ ├── Chart.yaml │ ├── Makefile │ ├── requirements.yaml │ └── values.yaml └── skaffold.yaml ├── jenkins ├── Dockerfile ├── pipeline.yaml └── skaffold.yaml ├── liberty ├── .dockerignore ├── .gitignore ├── .helmignore ├── Dockerfile ├── charts │ ├── .helmignore │ ├── Chart.yaml │ ├── Makefile │ ├── README.md │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── canary.yaml │ │ ├── deployment.yaml │ │ ├── hpa.yaml │ │ ├── ingress.yaml │ │ ├── ksvc.yaml │ │ └── service.yaml │ └── values.yaml ├── pipeline.yaml ├── preview │ ├── Chart.yaml │ ├── Makefile │ ├── requirements.yaml │ └── values.yaml ├── skaffold.yaml └── watch.sh ├── maven-java11 ├── .dockerignore ├── .gitignore ├── .helmignore ├── Dockerfile ├── charts │ ├── .helmignore │ ├── Chart.yaml │ ├── Makefile │ ├── README.md │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── canary.yaml │ │ ├── deployment.yaml │ │ ├── hpa.yaml │ │ ├── ingress.yaml │ │ ├── ksvc.yaml │ │ └── service.yaml │ └── values.yaml ├── pipeline.yaml ├── preview │ ├── Chart.yaml │ ├── Makefile │ ├── requirements.yaml │ └── values.yaml ├── skaffold.yaml └── watch.sh ├── maven-node-ruby ├── .dockerignore ├── .gitignore ├── .helmignore ├── Dockerfile ├── charts │ ├── .helmignore │ ├── Chart.yaml │ ├── Makefile │ ├── README.md │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── canary.yaml │ │ ├── deployment.yaml │ │ ├── hpa.yaml │ │ ├── ingress.yaml │ │ ├── ksvc.yaml │ │ └── service.yaml │ └── values.yaml ├── pipeline.yaml ├── preview │ ├── Chart.yaml │ ├── Makefile │ ├── requirements.yaml │ └── values.yaml ├── skaffold.yaml └── watch.sh ├── maven-quarkus ├── .dockerignore ├── .gitignore ├── .helmignore ├── Dockerfile ├── charts │ ├── .helmignore │ ├── Chart.yaml │ ├── Makefile │ ├── README.md │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── canary.yaml │ │ ├── deployment.yaml │ │ ├── hpa.yaml │ │ ├── ingress.yaml │ │ ├── ksvc.yaml │ │ └── service.yaml │ └── values.yaml ├── pipeline.yaml ├── preview │ ├── Chart.yaml │ ├── Makefile │ ├── requirements.yaml │ └── values.yaml ├── skaffold.yaml └── watch.sh ├── maven ├── .dockerignore ├── .gitignore ├── .helmignore ├── Dockerfile ├── charts │ ├── .helmignore │ ├── Chart.yaml │ ├── Makefile │ ├── README.md │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── canary.yaml │ │ ├── deployment.yaml │ │ ├── hpa.yaml │ │ ├── ingress.yaml │ │ ├── ksvc.yaml │ │ └── service.yaml │ └── values.yaml ├── pipeline.yaml ├── preview │ ├── Chart.yaml │ ├── Makefile │ ├── requirements.yaml │ └── values.yaml ├── skaffold.yaml └── watch.sh ├── ml-python-gpu-service ├── .dockerignore ├── .helmignore ├── Dockerfile ├── charts │ ├── .helmignore │ ├── Chart.yaml │ ├── Makefile │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── deployment.yaml │ │ ├── ingress.yaml │ │ ├── ksvc.yaml │ │ └── service.yaml │ └── values.yaml ├── pipeline.yaml ├── preview │ ├── Chart.yaml │ ├── Makefile │ ├── requirements.yaml │ └── values.yaml └── skaffold.yaml ├── ml-python-gpu-training ├── .dockerignore ├── .helmignore ├── Dockerfile ├── charts │ ├── .helmignore │ ├── Chart.yaml │ ├── Makefile │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── deployment.yaml │ │ ├── ingress.yaml │ │ ├── ksvc.yaml │ │ └── service.yaml │ └── values.yaml ├── pipeline.yaml ├── preview │ ├── Chart.yaml │ ├── Makefile │ ├── requirements.yaml │ └── values.yaml └── skaffold.yaml ├── ml-python-service ├── .dockerignore ├── .helmignore ├── Dockerfile ├── charts │ ├── .helmignore │ ├── Chart.yaml │ ├── Makefile │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── deployment.yaml │ │ ├── ingress.yaml │ │ ├── ksvc.yaml │ │ └── service.yaml │ └── values.yaml ├── pipeline.yaml ├── preview │ ├── Chart.yaml │ ├── Makefile │ ├── requirements.yaml │ └── values.yaml └── skaffold.yaml ├── ml-python-training ├── .dockerignore ├── .helmignore ├── Dockerfile ├── charts │ ├── .helmignore │ ├── Chart.yaml │ ├── Makefile │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── deployment.yaml │ │ ├── ingress.yaml │ │ ├── ksvc.yaml │ │ └── service.yaml │ └── values.yaml ├── pipeline.yaml ├── preview │ ├── Chart.yaml │ ├── Makefile │ ├── requirements.yaml │ └── values.yaml └── skaffold.yaml ├── nop └── pipeline.yaml ├── php ├── .dockerignore ├── .helmignore ├── Dockerfile ├── charts │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── canary.yaml │ │ ├── deployment.yaml │ │ ├── hpa.yaml │ │ ├── ingress.yaml │ │ ├── ksvc.yaml │ │ └── service.yaml │ └── values.yaml ├── pipeline.yaml ├── preview │ ├── Chart.yaml │ ├── Makefile │ ├── requirements.yaml │ └── values.yaml └── skaffold.yaml ├── python ├── .dockerignore ├── .helmignore ├── Dockerfile ├── charts │ ├── .helmignore │ ├── Chart.yaml │ ├── Makefile │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── canary.yaml │ │ ├── deployment.yaml │ │ ├── hpa.yaml │ │ ├── ingress.yaml │ │ ├── ksvc.yaml │ │ └── service.yaml │ └── values.yaml ├── pipeline.yaml ├── preview │ ├── Chart.yaml │ ├── Makefile │ ├── requirements.yaml │ └── values.yaml └── skaffold.yaml ├── ruby ├── .dockerignore ├── .helmignore ├── Dockerfile ├── charts │ ├── .helmignore │ ├── Chart.yaml │ ├── Makefile │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── canary.yaml │ │ ├── deployment.yaml │ │ ├── hpa.yaml │ │ ├── ingress.yaml │ │ ├── ksvc.yaml │ │ └── service.yaml │ └── values.yaml ├── pipeline.yaml ├── preview │ ├── Chart.yaml │ ├── Makefile │ ├── requirements.yaml │ └── values.yaml └── skaffold.yaml ├── rust ├── .dockerignore ├── .helmignore ├── Dockerfile ├── charts │ ├── .helmignore │ ├── Chart.yaml │ ├── Makefile │ ├── README.md │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── canary.yaml │ │ ├── deployment.yaml │ │ ├── hpa.yaml │ │ ├── ingress.yaml │ │ ├── ksvc.yaml │ │ └── service.yaml │ └── values.yaml ├── pipeline.yaml ├── preview │ ├── Chart.yaml │ ├── Makefile │ ├── requirements.yaml │ └── values.yaml └── skaffold.yaml ├── scala ├── Dockerfile ├── charts │ ├── .helmignore │ ├── Chart.yaml │ ├── Makefile │ ├── README.md │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── canary.yaml │ │ ├── deployment.yaml │ │ ├── hpa.yaml │ │ ├── ingress.yaml │ │ ├── ksvc.yaml │ │ └── service.yaml │ └── values.yaml ├── pipeline.yaml ├── preview │ ├── Chart.yaml │ ├── Makefile │ ├── requirements.yaml │ └── values.yaml └── skaffold.yaml ├── swift ├── .dockerignore ├── .helmignore ├── Dockerfile ├── chart │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── canary.yaml │ │ ├── deployment.yaml │ │ ├── hpa.yaml │ │ ├── ingress.yaml │ │ ├── ksvc.yaml │ │ └── service.yaml │ └── values.yaml └── skaffold.yaml └── typescript ├── .dockerignore ├── .helmignore ├── Dockerfile ├── charts ├── .helmignore ├── Chart.yaml ├── Makefile ├── README.md ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── canary.yaml │ ├── deployment.yaml │ ├── hpa.yaml │ ├── ingress.yaml │ ├── ksvc.yaml │ └── service.yaml └── values.yaml ├── pipeline.yaml ├── preview ├── Chart.yaml ├── Makefile ├── requirements.yaml └── values.yaml └── skaffold.yaml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/README.md -------------------------------------------------------------------------------- /packs/C++/.dockerignore: -------------------------------------------------------------------------------- 1 | Cargo.toml 2 | charts/ 3 | NOTICE 4 | LICENSE 5 | README.md -------------------------------------------------------------------------------- /packs/C++/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/C++/.helmignore -------------------------------------------------------------------------------- /packs/C++/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM centos:7 2 | EXPOSE 8080 3 | CMD ["/REPLACE_ME_APP_NAME"] 4 | COPY ./ / -------------------------------------------------------------------------------- /packs/C++/charts/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/C++/charts/.helmignore -------------------------------------------------------------------------------- /packs/C++/charts/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/C++/charts/Chart.yaml -------------------------------------------------------------------------------- /packs/C++/charts/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/C++/charts/Makefile -------------------------------------------------------------------------------- /packs/C++/charts/README.md: -------------------------------------------------------------------------------- 1 | # C++ application 2 | -------------------------------------------------------------------------------- /packs/C++/charts/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/C++/charts/templates/NOTES.txt -------------------------------------------------------------------------------- /packs/C++/charts/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/C++/charts/templates/_helpers.tpl -------------------------------------------------------------------------------- /packs/C++/charts/templates/canary.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/C++/charts/templates/canary.yaml -------------------------------------------------------------------------------- /packs/C++/charts/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/C++/charts/templates/deployment.yaml -------------------------------------------------------------------------------- /packs/C++/charts/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/C++/charts/templates/hpa.yaml -------------------------------------------------------------------------------- /packs/C++/charts/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/C++/charts/templates/ingress.yaml -------------------------------------------------------------------------------- /packs/C++/charts/templates/ksvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/C++/charts/templates/ksvc.yaml -------------------------------------------------------------------------------- /packs/C++/charts/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/C++/charts/templates/service.yaml -------------------------------------------------------------------------------- /packs/C++/charts/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/C++/charts/values.yaml -------------------------------------------------------------------------------- /packs/C++/pipeline.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/C++/pipeline.yaml -------------------------------------------------------------------------------- /packs/C++/preview/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/C++/preview/Chart.yaml -------------------------------------------------------------------------------- /packs/C++/preview/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/C++/preview/Makefile -------------------------------------------------------------------------------- /packs/C++/preview/requirements.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/C++/preview/requirements.yaml -------------------------------------------------------------------------------- /packs/C++/preview/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/C++/preview/values.yaml -------------------------------------------------------------------------------- /packs/C++/skaffold.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/C++/skaffold.yaml -------------------------------------------------------------------------------- /packs/D/.dockerignore: -------------------------------------------------------------------------------- 1 | Cargo.toml 2 | charts/ 3 | NOTICE 4 | LICENSE 5 | README.md -------------------------------------------------------------------------------- /packs/D/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/D/.helmignore -------------------------------------------------------------------------------- /packs/D/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM centos:7 2 | EXPOSE 8080 3 | CMD ["/REPLACE_ME_APP_NAME"] 4 | COPY ./ / -------------------------------------------------------------------------------- /packs/D/charts/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/D/charts/.helmignore -------------------------------------------------------------------------------- /packs/D/charts/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/D/charts/Chart.yaml -------------------------------------------------------------------------------- /packs/D/charts/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/D/charts/Makefile -------------------------------------------------------------------------------- /packs/D/charts/README.md: -------------------------------------------------------------------------------- 1 | # Dlang application 2 | -------------------------------------------------------------------------------- /packs/D/charts/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/D/charts/templates/NOTES.txt -------------------------------------------------------------------------------- /packs/D/charts/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/D/charts/templates/_helpers.tpl -------------------------------------------------------------------------------- /packs/D/charts/templates/canary.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/D/charts/templates/canary.yaml -------------------------------------------------------------------------------- /packs/D/charts/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/D/charts/templates/deployment.yaml -------------------------------------------------------------------------------- /packs/D/charts/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/D/charts/templates/hpa.yaml -------------------------------------------------------------------------------- /packs/D/charts/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/D/charts/templates/ingress.yaml -------------------------------------------------------------------------------- /packs/D/charts/templates/ksvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/D/charts/templates/ksvc.yaml -------------------------------------------------------------------------------- /packs/D/charts/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/D/charts/templates/service.yaml -------------------------------------------------------------------------------- /packs/D/charts/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/D/charts/values.yaml -------------------------------------------------------------------------------- /packs/D/pipeline.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/D/pipeline.yaml -------------------------------------------------------------------------------- /packs/D/preview/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/D/preview/Chart.yaml -------------------------------------------------------------------------------- /packs/D/preview/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/D/preview/Makefile -------------------------------------------------------------------------------- /packs/D/preview/requirements.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/D/preview/requirements.yaml -------------------------------------------------------------------------------- /packs/D/preview/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/D/preview/values.yaml -------------------------------------------------------------------------------- /packs/D/skaffold.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/D/skaffold.yaml -------------------------------------------------------------------------------- /packs/apps/pipeline.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/apps/pipeline.yaml -------------------------------------------------------------------------------- /packs/appserver/.dockerignore: -------------------------------------------------------------------------------- 1 | draft.toml 2 | charts/ 3 | NOTICE 4 | LICENSE 5 | README.md -------------------------------------------------------------------------------- /packs/appserver/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/appserver/.gitignore -------------------------------------------------------------------------------- /packs/appserver/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/appserver/.helmignore -------------------------------------------------------------------------------- /packs/appserver/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/appserver/Dockerfile -------------------------------------------------------------------------------- /packs/appserver/charts/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/appserver/charts/.helmignore -------------------------------------------------------------------------------- /packs/appserver/charts/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/appserver/charts/Chart.yaml -------------------------------------------------------------------------------- /packs/appserver/charts/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/appserver/charts/Makefile -------------------------------------------------------------------------------- /packs/appserver/charts/README.md: -------------------------------------------------------------------------------- 1 | # Java application -------------------------------------------------------------------------------- /packs/appserver/charts/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/appserver/charts/templates/NOTES.txt -------------------------------------------------------------------------------- /packs/appserver/charts/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/appserver/charts/templates/_helpers.tpl -------------------------------------------------------------------------------- /packs/appserver/charts/templates/canary.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/appserver/charts/templates/canary.yaml -------------------------------------------------------------------------------- /packs/appserver/charts/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/appserver/charts/templates/deployment.yaml -------------------------------------------------------------------------------- /packs/appserver/charts/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/appserver/charts/templates/hpa.yaml -------------------------------------------------------------------------------- /packs/appserver/charts/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/appserver/charts/templates/ingress.yaml -------------------------------------------------------------------------------- /packs/appserver/charts/templates/ksvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/appserver/charts/templates/ksvc.yaml -------------------------------------------------------------------------------- /packs/appserver/charts/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/appserver/charts/templates/service.yaml -------------------------------------------------------------------------------- /packs/appserver/charts/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/appserver/charts/values.yaml -------------------------------------------------------------------------------- /packs/appserver/pipeline.yaml: -------------------------------------------------------------------------------- 1 | extends: 2 | file: ../maven/pipeline.yaml 3 | -------------------------------------------------------------------------------- /packs/appserver/preview/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/appserver/preview/Chart.yaml -------------------------------------------------------------------------------- /packs/appserver/preview/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/appserver/preview/Makefile -------------------------------------------------------------------------------- /packs/appserver/preview/requirements.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/appserver/preview/requirements.yaml -------------------------------------------------------------------------------- /packs/appserver/preview/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/appserver/preview/values.yaml -------------------------------------------------------------------------------- /packs/appserver/skaffold.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/appserver/skaffold.yaml -------------------------------------------------------------------------------- /packs/charts/pipeline.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/charts/pipeline.yaml -------------------------------------------------------------------------------- /packs/csharp/.dockerignore: -------------------------------------------------------------------------------- 1 | draft.toml 2 | charts/ 3 | NOTICE 4 | LICENSE 5 | README.md 6 | bin/ 7 | obj/ 8 | -------------------------------------------------------------------------------- /packs/csharp/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/csharp/.helmignore -------------------------------------------------------------------------------- /packs/csharp/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/csharp/Dockerfile -------------------------------------------------------------------------------- /packs/csharp/charts/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/csharp/charts/.helmignore -------------------------------------------------------------------------------- /packs/csharp/charts/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/csharp/charts/Chart.yaml -------------------------------------------------------------------------------- /packs/csharp/charts/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/csharp/charts/Makefile -------------------------------------------------------------------------------- /packs/csharp/charts/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/csharp/charts/templates/NOTES.txt -------------------------------------------------------------------------------- /packs/csharp/charts/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/csharp/charts/templates/_helpers.tpl -------------------------------------------------------------------------------- /packs/csharp/charts/templates/canary.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/csharp/charts/templates/canary.yaml -------------------------------------------------------------------------------- /packs/csharp/charts/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/csharp/charts/templates/deployment.yaml -------------------------------------------------------------------------------- /packs/csharp/charts/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/csharp/charts/templates/hpa.yaml -------------------------------------------------------------------------------- /packs/csharp/charts/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/csharp/charts/templates/ingress.yaml -------------------------------------------------------------------------------- /packs/csharp/charts/templates/ksvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/csharp/charts/templates/ksvc.yaml -------------------------------------------------------------------------------- /packs/csharp/charts/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/csharp/charts/templates/service.yaml -------------------------------------------------------------------------------- /packs/csharp/charts/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/csharp/charts/values.yaml -------------------------------------------------------------------------------- /packs/csharp/pipeline.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/csharp/pipeline.yaml -------------------------------------------------------------------------------- /packs/csharp/preview/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/csharp/preview/Chart.yaml -------------------------------------------------------------------------------- /packs/csharp/preview/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/csharp/preview/Makefile -------------------------------------------------------------------------------- /packs/csharp/preview/requirements.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/csharp/preview/requirements.yaml -------------------------------------------------------------------------------- /packs/csharp/preview/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/csharp/preview/templates/deployment.yaml -------------------------------------------------------------------------------- /packs/csharp/preview/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/csharp/preview/values.yaml -------------------------------------------------------------------------------- /packs/csharp/skaffold.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/csharp/skaffold.yaml -------------------------------------------------------------------------------- /packs/custom-jenkins/pipeline.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/custom-jenkins/pipeline.yaml -------------------------------------------------------------------------------- /packs/cwp/.dockerignore: -------------------------------------------------------------------------------- 1 | draft.toml 2 | charts/ 3 | NOTICE 4 | LICENSE 5 | README.md -------------------------------------------------------------------------------- /packs/cwp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/cwp/.gitignore -------------------------------------------------------------------------------- /packs/cwp/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/cwp/.helmignore -------------------------------------------------------------------------------- /packs/cwp/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/cwp/Dockerfile -------------------------------------------------------------------------------- /packs/cwp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/cwp/Makefile -------------------------------------------------------------------------------- /packs/cwp/charts/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/cwp/charts/.helmignore -------------------------------------------------------------------------------- /packs/cwp/charts/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/cwp/charts/Chart.yaml -------------------------------------------------------------------------------- /packs/cwp/charts/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/cwp/charts/Makefile -------------------------------------------------------------------------------- /packs/cwp/charts/README.md: -------------------------------------------------------------------------------- 1 | # Java application -------------------------------------------------------------------------------- /packs/cwp/charts/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/cwp/charts/templates/NOTES.txt -------------------------------------------------------------------------------- /packs/cwp/charts/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/cwp/charts/templates/_helpers.tpl -------------------------------------------------------------------------------- /packs/cwp/charts/templates/canary.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/cwp/charts/templates/canary.yaml -------------------------------------------------------------------------------- /packs/cwp/charts/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/cwp/charts/templates/deployment.yaml -------------------------------------------------------------------------------- /packs/cwp/charts/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/cwp/charts/templates/hpa.yaml -------------------------------------------------------------------------------- /packs/cwp/charts/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/cwp/charts/templates/ingress.yaml -------------------------------------------------------------------------------- /packs/cwp/charts/templates/ksvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/cwp/charts/templates/ksvc.yaml -------------------------------------------------------------------------------- /packs/cwp/charts/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/cwp/charts/templates/service.yaml -------------------------------------------------------------------------------- /packs/cwp/charts/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/cwp/charts/values.yaml -------------------------------------------------------------------------------- /packs/cwp/pipeline.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/cwp/pipeline.yaml -------------------------------------------------------------------------------- /packs/cwp/preview/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/cwp/preview/Chart.yaml -------------------------------------------------------------------------------- /packs/cwp/preview/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/cwp/preview/Makefile -------------------------------------------------------------------------------- /packs/cwp/preview/requirements.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/cwp/preview/requirements.yaml -------------------------------------------------------------------------------- /packs/cwp/preview/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/cwp/preview/values.yaml -------------------------------------------------------------------------------- /packs/cwp/skaffold.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/cwp/skaffold.yaml -------------------------------------------------------------------------------- /packs/cwp/watch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/cwp/watch.sh -------------------------------------------------------------------------------- /packs/docker-helm/pipeline.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/docker-helm/pipeline.yaml -------------------------------------------------------------------------------- /packs/docker-helm/skaffold.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/docker-helm/skaffold.yaml -------------------------------------------------------------------------------- /packs/docker/pipeline.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/docker/pipeline.yaml -------------------------------------------------------------------------------- /packs/docker/skaffold.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/docker/skaffold.yaml -------------------------------------------------------------------------------- /packs/dropwizard/.dockerignore: -------------------------------------------------------------------------------- 1 | draft.toml 2 | charts/ 3 | NOTICE 4 | LICENSE 5 | README.md -------------------------------------------------------------------------------- /packs/dropwizard/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/dropwizard/.gitignore -------------------------------------------------------------------------------- /packs/dropwizard/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/dropwizard/.helmignore -------------------------------------------------------------------------------- /packs/dropwizard/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/dropwizard/Dockerfile -------------------------------------------------------------------------------- /packs/dropwizard/charts/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/dropwizard/charts/.helmignore -------------------------------------------------------------------------------- /packs/dropwizard/charts/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/dropwizard/charts/Chart.yaml -------------------------------------------------------------------------------- /packs/dropwizard/charts/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/dropwizard/charts/Makefile -------------------------------------------------------------------------------- /packs/dropwizard/charts/README.md: -------------------------------------------------------------------------------- 1 | # Java application -------------------------------------------------------------------------------- /packs/dropwizard/charts/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/dropwizard/charts/templates/NOTES.txt -------------------------------------------------------------------------------- /packs/dropwizard/charts/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/dropwizard/charts/templates/_helpers.tpl -------------------------------------------------------------------------------- /packs/dropwizard/charts/templates/canary.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/dropwizard/charts/templates/canary.yaml -------------------------------------------------------------------------------- /packs/dropwizard/charts/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/dropwizard/charts/templates/deployment.yaml -------------------------------------------------------------------------------- /packs/dropwizard/charts/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/dropwizard/charts/templates/hpa.yaml -------------------------------------------------------------------------------- /packs/dropwizard/charts/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/dropwizard/charts/templates/ingress.yaml -------------------------------------------------------------------------------- /packs/dropwizard/charts/templates/ksvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/dropwizard/charts/templates/ksvc.yaml -------------------------------------------------------------------------------- /packs/dropwizard/charts/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/dropwizard/charts/templates/service.yaml -------------------------------------------------------------------------------- /packs/dropwizard/charts/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/dropwizard/charts/values.yaml -------------------------------------------------------------------------------- /packs/dropwizard/pipeline.yaml: -------------------------------------------------------------------------------- 1 | extends: 2 | file: ../maven/pipeline.yaml 3 | -------------------------------------------------------------------------------- /packs/dropwizard/preview/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/dropwizard/preview/Chart.yaml -------------------------------------------------------------------------------- /packs/dropwizard/preview/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/dropwizard/preview/Makefile -------------------------------------------------------------------------------- /packs/dropwizard/preview/requirements.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/dropwizard/preview/requirements.yaml -------------------------------------------------------------------------------- /packs/dropwizard/preview/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/dropwizard/preview/values.yaml -------------------------------------------------------------------------------- /packs/dropwizard/skaffold.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/dropwizard/skaffold.yaml -------------------------------------------------------------------------------- /packs/dropwizard/watch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/dropwizard/watch.sh -------------------------------------------------------------------------------- /packs/environment-helmfile/pipeline.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/environment-helmfile/pipeline.yaml -------------------------------------------------------------------------------- /packs/environment/pipeline.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/environment/pipeline.yaml -------------------------------------------------------------------------------- /packs/git/pipeline.yaml: -------------------------------------------------------------------------------- 1 | extends: 2 | import: classic 3 | file: git/pipeline.yaml -------------------------------------------------------------------------------- /packs/go-mongodb/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/go-mongodb/.dockerignore -------------------------------------------------------------------------------- /packs/go-mongodb/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/go-mongodb/.helmignore -------------------------------------------------------------------------------- /packs/go-mongodb/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM scratch 2 | EXPOSE 8080 3 | ENTRYPOINT ["/REPLACE_ME_APP_NAME"] 4 | COPY ./bin/ / -------------------------------------------------------------------------------- /packs/go-mongodb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/go-mongodb/Makefile -------------------------------------------------------------------------------- /packs/go-mongodb/charts/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/go-mongodb/charts/.helmignore -------------------------------------------------------------------------------- /packs/go-mongodb/charts/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/go-mongodb/charts/Chart.yaml -------------------------------------------------------------------------------- /packs/go-mongodb/charts/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/go-mongodb/charts/Makefile -------------------------------------------------------------------------------- /packs/go-mongodb/charts/README.md: -------------------------------------------------------------------------------- 1 | # golang application -------------------------------------------------------------------------------- /packs/go-mongodb/charts/requirements.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/go-mongodb/charts/requirements.yaml -------------------------------------------------------------------------------- /packs/go-mongodb/charts/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/go-mongodb/charts/templates/NOTES.txt -------------------------------------------------------------------------------- /packs/go-mongodb/charts/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/go-mongodb/charts/templates/_helpers.tpl -------------------------------------------------------------------------------- /packs/go-mongodb/charts/templates/canary.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/go-mongodb/charts/templates/canary.yaml -------------------------------------------------------------------------------- /packs/go-mongodb/charts/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/go-mongodb/charts/templates/deployment.yaml -------------------------------------------------------------------------------- /packs/go-mongodb/charts/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/go-mongodb/charts/templates/hpa.yaml -------------------------------------------------------------------------------- /packs/go-mongodb/charts/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/go-mongodb/charts/templates/ingress.yaml -------------------------------------------------------------------------------- /packs/go-mongodb/charts/templates/ksvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/go-mongodb/charts/templates/ksvc.yaml -------------------------------------------------------------------------------- /packs/go-mongodb/charts/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/go-mongodb/charts/templates/service.yaml -------------------------------------------------------------------------------- /packs/go-mongodb/charts/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/go-mongodb/charts/values.yaml -------------------------------------------------------------------------------- /packs/go-mongodb/pipeline.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/go-mongodb/pipeline.yaml -------------------------------------------------------------------------------- /packs/go-mongodb/preview/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/go-mongodb/preview/Chart.yaml -------------------------------------------------------------------------------- /packs/go-mongodb/preview/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/go-mongodb/preview/Makefile -------------------------------------------------------------------------------- /packs/go-mongodb/preview/requirements.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/go-mongodb/preview/requirements.yaml -------------------------------------------------------------------------------- /packs/go-mongodb/preview/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/go-mongodb/preview/values.yaml -------------------------------------------------------------------------------- /packs/go-mongodb/skaffold.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/go-mongodb/skaffold.yaml -------------------------------------------------------------------------------- /packs/go-mongodb/watch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/go-mongodb/watch.sh -------------------------------------------------------------------------------- /packs/go/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/go/.dockerignore -------------------------------------------------------------------------------- /packs/go/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/go/.helmignore -------------------------------------------------------------------------------- /packs/go/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM scratch 2 | EXPOSE 8080 3 | ENTRYPOINT ["/REPLACE_ME_APP_NAME"] 4 | COPY ./bin/ / -------------------------------------------------------------------------------- /packs/go/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/go/Makefile -------------------------------------------------------------------------------- /packs/go/charts/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/go/charts/.helmignore -------------------------------------------------------------------------------- /packs/go/charts/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/go/charts/Chart.yaml -------------------------------------------------------------------------------- /packs/go/charts/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/go/charts/Makefile -------------------------------------------------------------------------------- /packs/go/charts/README.md: -------------------------------------------------------------------------------- 1 | # golang application -------------------------------------------------------------------------------- /packs/go/charts/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/go/charts/templates/NOTES.txt -------------------------------------------------------------------------------- /packs/go/charts/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/go/charts/templates/_helpers.tpl -------------------------------------------------------------------------------- /packs/go/charts/templates/canary.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/go/charts/templates/canary.yaml -------------------------------------------------------------------------------- /packs/go/charts/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/go/charts/templates/deployment.yaml -------------------------------------------------------------------------------- /packs/go/charts/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/go/charts/templates/hpa.yaml -------------------------------------------------------------------------------- /packs/go/charts/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/go/charts/templates/ingress.yaml -------------------------------------------------------------------------------- /packs/go/charts/templates/ksvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/go/charts/templates/ksvc.yaml -------------------------------------------------------------------------------- /packs/go/charts/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/go/charts/templates/service.yaml -------------------------------------------------------------------------------- /packs/go/charts/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/go/charts/values.yaml -------------------------------------------------------------------------------- /packs/go/pipeline.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/go/pipeline.yaml -------------------------------------------------------------------------------- /packs/go/preview/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/go/preview/Chart.yaml -------------------------------------------------------------------------------- /packs/go/preview/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/go/preview/Makefile -------------------------------------------------------------------------------- /packs/go/preview/requirements.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/go/preview/requirements.yaml -------------------------------------------------------------------------------- /packs/go/preview/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/go/preview/values.yaml -------------------------------------------------------------------------------- /packs/go/skaffold.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/go/skaffold.yaml -------------------------------------------------------------------------------- /packs/go/watch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/go/watch.sh -------------------------------------------------------------------------------- /packs/gradle/.dockerignore: -------------------------------------------------------------------------------- 1 | draft.toml 2 | charts/ 3 | NOTICE 4 | LICENSE 5 | README.md -------------------------------------------------------------------------------- /packs/gradle/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/gradle/.helmignore -------------------------------------------------------------------------------- /packs/gradle/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/gradle/Dockerfile -------------------------------------------------------------------------------- /packs/gradle/charts/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/gradle/charts/.helmignore -------------------------------------------------------------------------------- /packs/gradle/charts/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/gradle/charts/Chart.yaml -------------------------------------------------------------------------------- /packs/gradle/charts/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/gradle/charts/Makefile -------------------------------------------------------------------------------- /packs/gradle/charts/README.md: -------------------------------------------------------------------------------- 1 | # Java application -------------------------------------------------------------------------------- /packs/gradle/charts/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/gradle/charts/templates/NOTES.txt -------------------------------------------------------------------------------- /packs/gradle/charts/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/gradle/charts/templates/_helpers.tpl -------------------------------------------------------------------------------- /packs/gradle/charts/templates/canary.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/gradle/charts/templates/canary.yaml -------------------------------------------------------------------------------- /packs/gradle/charts/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/gradle/charts/templates/deployment.yaml -------------------------------------------------------------------------------- /packs/gradle/charts/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/gradle/charts/templates/hpa.yaml -------------------------------------------------------------------------------- /packs/gradle/charts/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/gradle/charts/templates/ingress.yaml -------------------------------------------------------------------------------- /packs/gradle/charts/templates/ksvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/gradle/charts/templates/ksvc.yaml -------------------------------------------------------------------------------- /packs/gradle/charts/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/gradle/charts/templates/service.yaml -------------------------------------------------------------------------------- /packs/gradle/charts/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/gradle/charts/values.yaml -------------------------------------------------------------------------------- /packs/gradle/pipeline.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/gradle/pipeline.yaml -------------------------------------------------------------------------------- /packs/gradle/preview/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/gradle/preview/Chart.yaml -------------------------------------------------------------------------------- /packs/gradle/preview/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/gradle/preview/Makefile -------------------------------------------------------------------------------- /packs/gradle/preview/requirements.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/gradle/preview/requirements.yaml -------------------------------------------------------------------------------- /packs/gradle/preview/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/gradle/preview/values.yaml -------------------------------------------------------------------------------- /packs/gradle/skaffold.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/gradle/skaffold.yaml -------------------------------------------------------------------------------- /packs/gradle/watch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/gradle/watch.sh -------------------------------------------------------------------------------- /packs/helm/pipeline.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/helm/pipeline.yaml -------------------------------------------------------------------------------- /packs/imports.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/imports.yaml -------------------------------------------------------------------------------- /packs/javascript-ui-nginx/.dockerignore: -------------------------------------------------------------------------------- 1 | draft.toml 2 | charts/ 3 | NOTICE 4 | LICENSE 5 | README.md -------------------------------------------------------------------------------- /packs/javascript-ui-nginx/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/javascript-ui-nginx/.helmignore -------------------------------------------------------------------------------- /packs/javascript-ui-nginx/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/javascript-ui-nginx/Dockerfile -------------------------------------------------------------------------------- /packs/javascript-ui-nginx/charts/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/javascript-ui-nginx/charts/.helmignore -------------------------------------------------------------------------------- /packs/javascript-ui-nginx/charts/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/javascript-ui-nginx/charts/Chart.yaml -------------------------------------------------------------------------------- /packs/javascript-ui-nginx/charts/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/javascript-ui-nginx/charts/Makefile -------------------------------------------------------------------------------- /packs/javascript-ui-nginx/charts/README.md: -------------------------------------------------------------------------------- 1 | # Javascript UI application with Nginx -------------------------------------------------------------------------------- /packs/javascript-ui-nginx/charts/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/javascript-ui-nginx/charts/templates/NOTES.txt -------------------------------------------------------------------------------- /packs/javascript-ui-nginx/charts/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/javascript-ui-nginx/charts/templates/_helpers.tpl -------------------------------------------------------------------------------- /packs/javascript-ui-nginx/charts/templates/canary.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/javascript-ui-nginx/charts/templates/canary.yaml -------------------------------------------------------------------------------- /packs/javascript-ui-nginx/charts/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/javascript-ui-nginx/charts/templates/deployment.yaml -------------------------------------------------------------------------------- /packs/javascript-ui-nginx/charts/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/javascript-ui-nginx/charts/templates/hpa.yaml -------------------------------------------------------------------------------- /packs/javascript-ui-nginx/charts/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/javascript-ui-nginx/charts/templates/ingress.yaml -------------------------------------------------------------------------------- /packs/javascript-ui-nginx/charts/templates/ksvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/javascript-ui-nginx/charts/templates/ksvc.yaml -------------------------------------------------------------------------------- /packs/javascript-ui-nginx/charts/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/javascript-ui-nginx/charts/templates/service.yaml -------------------------------------------------------------------------------- /packs/javascript-ui-nginx/charts/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/javascript-ui-nginx/charts/values.yaml -------------------------------------------------------------------------------- /packs/javascript-ui-nginx/pipeline.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/javascript-ui-nginx/pipeline.yaml -------------------------------------------------------------------------------- /packs/javascript-ui-nginx/preview/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/javascript-ui-nginx/preview/Chart.yaml -------------------------------------------------------------------------------- /packs/javascript-ui-nginx/preview/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/javascript-ui-nginx/preview/Makefile -------------------------------------------------------------------------------- /packs/javascript-ui-nginx/preview/requirements.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/javascript-ui-nginx/preview/requirements.yaml -------------------------------------------------------------------------------- /packs/javascript-ui-nginx/preview/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/javascript-ui-nginx/preview/values.yaml -------------------------------------------------------------------------------- /packs/javascript-ui-nginx/skaffold.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/javascript-ui-nginx/skaffold.yaml -------------------------------------------------------------------------------- /packs/javascript/.dockerignore: -------------------------------------------------------------------------------- 1 | draft.toml 2 | charts/ 3 | NOTICE 4 | LICENSE 5 | README.md -------------------------------------------------------------------------------- /packs/javascript/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/javascript/.helmignore -------------------------------------------------------------------------------- /packs/javascript/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/javascript/Dockerfile -------------------------------------------------------------------------------- /packs/javascript/charts/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/javascript/charts/.helmignore -------------------------------------------------------------------------------- /packs/javascript/charts/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/javascript/charts/Chart.yaml -------------------------------------------------------------------------------- /packs/javascript/charts/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/javascript/charts/Makefile -------------------------------------------------------------------------------- /packs/javascript/charts/README.md: -------------------------------------------------------------------------------- 1 | # Javascript application -------------------------------------------------------------------------------- /packs/javascript/charts/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/javascript/charts/templates/NOTES.txt -------------------------------------------------------------------------------- /packs/javascript/charts/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/javascript/charts/templates/_helpers.tpl -------------------------------------------------------------------------------- /packs/javascript/charts/templates/canary.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/javascript/charts/templates/canary.yaml -------------------------------------------------------------------------------- /packs/javascript/charts/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/javascript/charts/templates/deployment.yaml -------------------------------------------------------------------------------- /packs/javascript/charts/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/javascript/charts/templates/hpa.yaml -------------------------------------------------------------------------------- /packs/javascript/charts/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/javascript/charts/templates/ingress.yaml -------------------------------------------------------------------------------- /packs/javascript/charts/templates/ksvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/javascript/charts/templates/ksvc.yaml -------------------------------------------------------------------------------- /packs/javascript/charts/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/javascript/charts/templates/service.yaml -------------------------------------------------------------------------------- /packs/javascript/charts/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/javascript/charts/values.yaml -------------------------------------------------------------------------------- /packs/javascript/pipeline.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/javascript/pipeline.yaml -------------------------------------------------------------------------------- /packs/javascript/preview/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/javascript/preview/Chart.yaml -------------------------------------------------------------------------------- /packs/javascript/preview/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/javascript/preview/Makefile -------------------------------------------------------------------------------- /packs/javascript/preview/requirements.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/javascript/preview/requirements.yaml -------------------------------------------------------------------------------- /packs/javascript/preview/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/javascript/preview/values.yaml -------------------------------------------------------------------------------- /packs/javascript/skaffold.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/javascript/skaffold.yaml -------------------------------------------------------------------------------- /packs/jenkins/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/jenkins/Dockerfile -------------------------------------------------------------------------------- /packs/jenkins/pipeline.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/jenkins/pipeline.yaml -------------------------------------------------------------------------------- /packs/jenkins/skaffold.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/jenkins/skaffold.yaml -------------------------------------------------------------------------------- /packs/liberty/.dockerignore: -------------------------------------------------------------------------------- 1 | draft.toml 2 | charts/ 3 | NOTICE 4 | LICENSE 5 | README.md -------------------------------------------------------------------------------- /packs/liberty/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/liberty/.gitignore -------------------------------------------------------------------------------- /packs/liberty/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/liberty/.helmignore -------------------------------------------------------------------------------- /packs/liberty/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/liberty/Dockerfile -------------------------------------------------------------------------------- /packs/liberty/charts/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/liberty/charts/.helmignore -------------------------------------------------------------------------------- /packs/liberty/charts/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/liberty/charts/Chart.yaml -------------------------------------------------------------------------------- /packs/liberty/charts/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/liberty/charts/Makefile -------------------------------------------------------------------------------- /packs/liberty/charts/README.md: -------------------------------------------------------------------------------- 1 | # Liberty Java application -------------------------------------------------------------------------------- /packs/liberty/charts/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/liberty/charts/templates/NOTES.txt -------------------------------------------------------------------------------- /packs/liberty/charts/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/liberty/charts/templates/_helpers.tpl -------------------------------------------------------------------------------- /packs/liberty/charts/templates/canary.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/liberty/charts/templates/canary.yaml -------------------------------------------------------------------------------- /packs/liberty/charts/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/liberty/charts/templates/deployment.yaml -------------------------------------------------------------------------------- /packs/liberty/charts/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/liberty/charts/templates/hpa.yaml -------------------------------------------------------------------------------- /packs/liberty/charts/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/liberty/charts/templates/ingress.yaml -------------------------------------------------------------------------------- /packs/liberty/charts/templates/ksvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/liberty/charts/templates/ksvc.yaml -------------------------------------------------------------------------------- /packs/liberty/charts/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/liberty/charts/templates/service.yaml -------------------------------------------------------------------------------- /packs/liberty/charts/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/liberty/charts/values.yaml -------------------------------------------------------------------------------- /packs/liberty/pipeline.yaml: -------------------------------------------------------------------------------- 1 | extends: 2 | file: ../maven/pipeline.yaml 3 | -------------------------------------------------------------------------------- /packs/liberty/preview/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/liberty/preview/Chart.yaml -------------------------------------------------------------------------------- /packs/liberty/preview/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/liberty/preview/Makefile -------------------------------------------------------------------------------- /packs/liberty/preview/requirements.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/liberty/preview/requirements.yaml -------------------------------------------------------------------------------- /packs/liberty/preview/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/liberty/preview/values.yaml -------------------------------------------------------------------------------- /packs/liberty/skaffold.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/liberty/skaffold.yaml -------------------------------------------------------------------------------- /packs/liberty/watch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/liberty/watch.sh -------------------------------------------------------------------------------- /packs/maven-java11/.dockerignore: -------------------------------------------------------------------------------- 1 | draft.toml 2 | charts/ 3 | NOTICE 4 | LICENSE 5 | README.md -------------------------------------------------------------------------------- /packs/maven-java11/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/maven-java11/.gitignore -------------------------------------------------------------------------------- /packs/maven-java11/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/maven-java11/.helmignore -------------------------------------------------------------------------------- /packs/maven-java11/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/maven-java11/Dockerfile -------------------------------------------------------------------------------- /packs/maven-java11/charts/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/maven-java11/charts/.helmignore -------------------------------------------------------------------------------- /packs/maven-java11/charts/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/maven-java11/charts/Chart.yaml -------------------------------------------------------------------------------- /packs/maven-java11/charts/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/maven-java11/charts/Makefile -------------------------------------------------------------------------------- /packs/maven-java11/charts/README.md: -------------------------------------------------------------------------------- 1 | # Java application -------------------------------------------------------------------------------- /packs/maven-java11/charts/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/maven-java11/charts/templates/NOTES.txt -------------------------------------------------------------------------------- /packs/maven-java11/charts/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/maven-java11/charts/templates/_helpers.tpl -------------------------------------------------------------------------------- /packs/maven-java11/charts/templates/canary.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/maven-java11/charts/templates/canary.yaml -------------------------------------------------------------------------------- /packs/maven-java11/charts/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/maven-java11/charts/templates/deployment.yaml -------------------------------------------------------------------------------- /packs/maven-java11/charts/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/maven-java11/charts/templates/hpa.yaml -------------------------------------------------------------------------------- /packs/maven-java11/charts/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/maven-java11/charts/templates/ingress.yaml -------------------------------------------------------------------------------- /packs/maven-java11/charts/templates/ksvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/maven-java11/charts/templates/ksvc.yaml -------------------------------------------------------------------------------- /packs/maven-java11/charts/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/maven-java11/charts/templates/service.yaml -------------------------------------------------------------------------------- /packs/maven-java11/charts/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/maven-java11/charts/values.yaml -------------------------------------------------------------------------------- /packs/maven-java11/pipeline.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/maven-java11/pipeline.yaml -------------------------------------------------------------------------------- /packs/maven-java11/preview/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/maven-java11/preview/Chart.yaml -------------------------------------------------------------------------------- /packs/maven-java11/preview/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/maven-java11/preview/Makefile -------------------------------------------------------------------------------- /packs/maven-java11/preview/requirements.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/maven-java11/preview/requirements.yaml -------------------------------------------------------------------------------- /packs/maven-java11/preview/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/maven-java11/preview/values.yaml -------------------------------------------------------------------------------- /packs/maven-java11/skaffold.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/maven-java11/skaffold.yaml -------------------------------------------------------------------------------- /packs/maven-java11/watch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/maven-java11/watch.sh -------------------------------------------------------------------------------- /packs/maven-node-ruby/.dockerignore: -------------------------------------------------------------------------------- 1 | draft.toml 2 | charts/ 3 | NOTICE 4 | LICENSE 5 | README.md -------------------------------------------------------------------------------- /packs/maven-node-ruby/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/maven-node-ruby/.gitignore -------------------------------------------------------------------------------- /packs/maven-node-ruby/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/maven-node-ruby/.helmignore -------------------------------------------------------------------------------- /packs/maven-node-ruby/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/maven-node-ruby/Dockerfile -------------------------------------------------------------------------------- /packs/maven-node-ruby/charts/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/maven-node-ruby/charts/.helmignore -------------------------------------------------------------------------------- /packs/maven-node-ruby/charts/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/maven-node-ruby/charts/Chart.yaml -------------------------------------------------------------------------------- /packs/maven-node-ruby/charts/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/maven-node-ruby/charts/Makefile -------------------------------------------------------------------------------- /packs/maven-node-ruby/charts/README.md: -------------------------------------------------------------------------------- 1 | # Java application -------------------------------------------------------------------------------- /packs/maven-node-ruby/charts/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/maven-node-ruby/charts/templates/NOTES.txt -------------------------------------------------------------------------------- /packs/maven-node-ruby/charts/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/maven-node-ruby/charts/templates/_helpers.tpl -------------------------------------------------------------------------------- /packs/maven-node-ruby/charts/templates/canary.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/maven-node-ruby/charts/templates/canary.yaml -------------------------------------------------------------------------------- /packs/maven-node-ruby/charts/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/maven-node-ruby/charts/templates/deployment.yaml -------------------------------------------------------------------------------- /packs/maven-node-ruby/charts/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/maven-node-ruby/charts/templates/hpa.yaml -------------------------------------------------------------------------------- /packs/maven-node-ruby/charts/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/maven-node-ruby/charts/templates/ingress.yaml -------------------------------------------------------------------------------- /packs/maven-node-ruby/charts/templates/ksvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/maven-node-ruby/charts/templates/ksvc.yaml -------------------------------------------------------------------------------- /packs/maven-node-ruby/charts/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/maven-node-ruby/charts/templates/service.yaml -------------------------------------------------------------------------------- /packs/maven-node-ruby/charts/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/maven-node-ruby/charts/values.yaml -------------------------------------------------------------------------------- /packs/maven-node-ruby/pipeline.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/maven-node-ruby/pipeline.yaml -------------------------------------------------------------------------------- /packs/maven-node-ruby/preview/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/maven-node-ruby/preview/Chart.yaml -------------------------------------------------------------------------------- /packs/maven-node-ruby/preview/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/maven-node-ruby/preview/Makefile -------------------------------------------------------------------------------- /packs/maven-node-ruby/preview/requirements.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/maven-node-ruby/preview/requirements.yaml -------------------------------------------------------------------------------- /packs/maven-node-ruby/preview/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/maven-node-ruby/preview/values.yaml -------------------------------------------------------------------------------- /packs/maven-node-ruby/skaffold.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/maven-node-ruby/skaffold.yaml -------------------------------------------------------------------------------- /packs/maven-node-ruby/watch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/maven-node-ruby/watch.sh -------------------------------------------------------------------------------- /packs/maven-quarkus/.dockerignore: -------------------------------------------------------------------------------- 1 | draft.toml 2 | charts/ 3 | NOTICE 4 | LICENSE 5 | README.md -------------------------------------------------------------------------------- /packs/maven-quarkus/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/maven-quarkus/.gitignore -------------------------------------------------------------------------------- /packs/maven-quarkus/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/maven-quarkus/.helmignore -------------------------------------------------------------------------------- /packs/maven-quarkus/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/maven-quarkus/Dockerfile -------------------------------------------------------------------------------- /packs/maven-quarkus/charts/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/maven-quarkus/charts/.helmignore -------------------------------------------------------------------------------- /packs/maven-quarkus/charts/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/maven-quarkus/charts/Chart.yaml -------------------------------------------------------------------------------- /packs/maven-quarkus/charts/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/maven-quarkus/charts/Makefile -------------------------------------------------------------------------------- /packs/maven-quarkus/charts/README.md: -------------------------------------------------------------------------------- 1 | # Java application -------------------------------------------------------------------------------- /packs/maven-quarkus/charts/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/maven-quarkus/charts/templates/NOTES.txt -------------------------------------------------------------------------------- /packs/maven-quarkus/charts/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/maven-quarkus/charts/templates/_helpers.tpl -------------------------------------------------------------------------------- /packs/maven-quarkus/charts/templates/canary.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/maven-quarkus/charts/templates/canary.yaml -------------------------------------------------------------------------------- /packs/maven-quarkus/charts/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/maven-quarkus/charts/templates/deployment.yaml -------------------------------------------------------------------------------- /packs/maven-quarkus/charts/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/maven-quarkus/charts/templates/hpa.yaml -------------------------------------------------------------------------------- /packs/maven-quarkus/charts/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/maven-quarkus/charts/templates/ingress.yaml -------------------------------------------------------------------------------- /packs/maven-quarkus/charts/templates/ksvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/maven-quarkus/charts/templates/ksvc.yaml -------------------------------------------------------------------------------- /packs/maven-quarkus/charts/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/maven-quarkus/charts/templates/service.yaml -------------------------------------------------------------------------------- /packs/maven-quarkus/charts/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/maven-quarkus/charts/values.yaml -------------------------------------------------------------------------------- /packs/maven-quarkus/pipeline.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/maven-quarkus/pipeline.yaml -------------------------------------------------------------------------------- /packs/maven-quarkus/preview/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/maven-quarkus/preview/Chart.yaml -------------------------------------------------------------------------------- /packs/maven-quarkus/preview/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/maven-quarkus/preview/Makefile -------------------------------------------------------------------------------- /packs/maven-quarkus/preview/requirements.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/maven-quarkus/preview/requirements.yaml -------------------------------------------------------------------------------- /packs/maven-quarkus/preview/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/maven-quarkus/preview/values.yaml -------------------------------------------------------------------------------- /packs/maven-quarkus/skaffold.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/maven-quarkus/skaffold.yaml -------------------------------------------------------------------------------- /packs/maven-quarkus/watch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/maven-quarkus/watch.sh -------------------------------------------------------------------------------- /packs/maven/.dockerignore: -------------------------------------------------------------------------------- 1 | draft.toml 2 | charts/ 3 | NOTICE 4 | LICENSE 5 | README.md -------------------------------------------------------------------------------- /packs/maven/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/maven/.gitignore -------------------------------------------------------------------------------- /packs/maven/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/maven/.helmignore -------------------------------------------------------------------------------- /packs/maven/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/maven/Dockerfile -------------------------------------------------------------------------------- /packs/maven/charts/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/maven/charts/.helmignore -------------------------------------------------------------------------------- /packs/maven/charts/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/maven/charts/Chart.yaml -------------------------------------------------------------------------------- /packs/maven/charts/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/maven/charts/Makefile -------------------------------------------------------------------------------- /packs/maven/charts/README.md: -------------------------------------------------------------------------------- 1 | # Java application -------------------------------------------------------------------------------- /packs/maven/charts/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/maven/charts/templates/NOTES.txt -------------------------------------------------------------------------------- /packs/maven/charts/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/maven/charts/templates/_helpers.tpl -------------------------------------------------------------------------------- /packs/maven/charts/templates/canary.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/maven/charts/templates/canary.yaml -------------------------------------------------------------------------------- /packs/maven/charts/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/maven/charts/templates/deployment.yaml -------------------------------------------------------------------------------- /packs/maven/charts/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/maven/charts/templates/hpa.yaml -------------------------------------------------------------------------------- /packs/maven/charts/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/maven/charts/templates/ingress.yaml -------------------------------------------------------------------------------- /packs/maven/charts/templates/ksvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/maven/charts/templates/ksvc.yaml -------------------------------------------------------------------------------- /packs/maven/charts/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/maven/charts/templates/service.yaml -------------------------------------------------------------------------------- /packs/maven/charts/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/maven/charts/values.yaml -------------------------------------------------------------------------------- /packs/maven/pipeline.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/maven/pipeline.yaml -------------------------------------------------------------------------------- /packs/maven/preview/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/maven/preview/Chart.yaml -------------------------------------------------------------------------------- /packs/maven/preview/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/maven/preview/Makefile -------------------------------------------------------------------------------- /packs/maven/preview/requirements.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/maven/preview/requirements.yaml -------------------------------------------------------------------------------- /packs/maven/preview/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/maven/preview/values.yaml -------------------------------------------------------------------------------- /packs/maven/skaffold.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/maven/skaffold.yaml -------------------------------------------------------------------------------- /packs/maven/watch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/maven/watch.sh -------------------------------------------------------------------------------- /packs/ml-python-gpu-service/.dockerignore: -------------------------------------------------------------------------------- 1 | draft.toml 2 | charts/ 3 | NOTICE 4 | LICENSE 5 | README.md 6 | -------------------------------------------------------------------------------- /packs/ml-python-gpu-service/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/ml-python-gpu-service/.helmignore -------------------------------------------------------------------------------- /packs/ml-python-gpu-service/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/ml-python-gpu-service/Dockerfile -------------------------------------------------------------------------------- /packs/ml-python-gpu-service/charts/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/ml-python-gpu-service/charts/.helmignore -------------------------------------------------------------------------------- /packs/ml-python-gpu-service/charts/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/ml-python-gpu-service/charts/Chart.yaml -------------------------------------------------------------------------------- /packs/ml-python-gpu-service/charts/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/ml-python-gpu-service/charts/Makefile -------------------------------------------------------------------------------- /packs/ml-python-gpu-service/charts/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/ml-python-gpu-service/charts/templates/NOTES.txt -------------------------------------------------------------------------------- /packs/ml-python-gpu-service/charts/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/ml-python-gpu-service/charts/templates/_helpers.tpl -------------------------------------------------------------------------------- /packs/ml-python-gpu-service/charts/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/ml-python-gpu-service/charts/templates/deployment.yaml -------------------------------------------------------------------------------- /packs/ml-python-gpu-service/charts/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/ml-python-gpu-service/charts/templates/ingress.yaml -------------------------------------------------------------------------------- /packs/ml-python-gpu-service/charts/templates/ksvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/ml-python-gpu-service/charts/templates/ksvc.yaml -------------------------------------------------------------------------------- /packs/ml-python-gpu-service/charts/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/ml-python-gpu-service/charts/templates/service.yaml -------------------------------------------------------------------------------- /packs/ml-python-gpu-service/charts/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/ml-python-gpu-service/charts/values.yaml -------------------------------------------------------------------------------- /packs/ml-python-gpu-service/pipeline.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/ml-python-gpu-service/pipeline.yaml -------------------------------------------------------------------------------- /packs/ml-python-gpu-service/preview/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/ml-python-gpu-service/preview/Chart.yaml -------------------------------------------------------------------------------- /packs/ml-python-gpu-service/preview/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/ml-python-gpu-service/preview/Makefile -------------------------------------------------------------------------------- /packs/ml-python-gpu-service/preview/requirements.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/ml-python-gpu-service/preview/requirements.yaml -------------------------------------------------------------------------------- /packs/ml-python-gpu-service/preview/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/ml-python-gpu-service/preview/values.yaml -------------------------------------------------------------------------------- /packs/ml-python-gpu-service/skaffold.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/ml-python-gpu-service/skaffold.yaml -------------------------------------------------------------------------------- /packs/ml-python-gpu-training/.dockerignore: -------------------------------------------------------------------------------- 1 | draft.toml 2 | charts/ 3 | NOTICE 4 | LICENSE 5 | README.md 6 | -------------------------------------------------------------------------------- /packs/ml-python-gpu-training/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/ml-python-gpu-training/.helmignore -------------------------------------------------------------------------------- /packs/ml-python-gpu-training/Dockerfile: -------------------------------------------------------------------------------- 1 | # Not used as the pipeline does not create an image -------------------------------------------------------------------------------- /packs/ml-python-gpu-training/charts/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/ml-python-gpu-training/charts/.helmignore -------------------------------------------------------------------------------- /packs/ml-python-gpu-training/charts/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/ml-python-gpu-training/charts/Chart.yaml -------------------------------------------------------------------------------- /packs/ml-python-gpu-training/charts/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/ml-python-gpu-training/charts/Makefile -------------------------------------------------------------------------------- /packs/ml-python-gpu-training/charts/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/ml-python-gpu-training/charts/templates/NOTES.txt -------------------------------------------------------------------------------- /packs/ml-python-gpu-training/charts/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/ml-python-gpu-training/charts/templates/_helpers.tpl -------------------------------------------------------------------------------- /packs/ml-python-gpu-training/charts/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/ml-python-gpu-training/charts/templates/deployment.yaml -------------------------------------------------------------------------------- /packs/ml-python-gpu-training/charts/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/ml-python-gpu-training/charts/templates/ingress.yaml -------------------------------------------------------------------------------- /packs/ml-python-gpu-training/charts/templates/ksvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/ml-python-gpu-training/charts/templates/ksvc.yaml -------------------------------------------------------------------------------- /packs/ml-python-gpu-training/charts/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/ml-python-gpu-training/charts/templates/service.yaml -------------------------------------------------------------------------------- /packs/ml-python-gpu-training/charts/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/ml-python-gpu-training/charts/values.yaml -------------------------------------------------------------------------------- /packs/ml-python-gpu-training/pipeline.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/ml-python-gpu-training/pipeline.yaml -------------------------------------------------------------------------------- /packs/ml-python-gpu-training/preview/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/ml-python-gpu-training/preview/Chart.yaml -------------------------------------------------------------------------------- /packs/ml-python-gpu-training/preview/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/ml-python-gpu-training/preview/Makefile -------------------------------------------------------------------------------- /packs/ml-python-gpu-training/preview/requirements.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/ml-python-gpu-training/preview/requirements.yaml -------------------------------------------------------------------------------- /packs/ml-python-gpu-training/preview/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/ml-python-gpu-training/preview/values.yaml -------------------------------------------------------------------------------- /packs/ml-python-gpu-training/skaffold.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/ml-python-gpu-training/skaffold.yaml -------------------------------------------------------------------------------- /packs/ml-python-service/.dockerignore: -------------------------------------------------------------------------------- 1 | draft.toml 2 | charts/ 3 | NOTICE 4 | LICENSE 5 | README.md 6 | -------------------------------------------------------------------------------- /packs/ml-python-service/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/ml-python-service/.helmignore -------------------------------------------------------------------------------- /packs/ml-python-service/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/ml-python-service/Dockerfile -------------------------------------------------------------------------------- /packs/ml-python-service/charts/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/ml-python-service/charts/.helmignore -------------------------------------------------------------------------------- /packs/ml-python-service/charts/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/ml-python-service/charts/Chart.yaml -------------------------------------------------------------------------------- /packs/ml-python-service/charts/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/ml-python-service/charts/Makefile -------------------------------------------------------------------------------- /packs/ml-python-service/charts/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/ml-python-service/charts/templates/NOTES.txt -------------------------------------------------------------------------------- /packs/ml-python-service/charts/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/ml-python-service/charts/templates/_helpers.tpl -------------------------------------------------------------------------------- /packs/ml-python-service/charts/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/ml-python-service/charts/templates/deployment.yaml -------------------------------------------------------------------------------- /packs/ml-python-service/charts/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/ml-python-service/charts/templates/ingress.yaml -------------------------------------------------------------------------------- /packs/ml-python-service/charts/templates/ksvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/ml-python-service/charts/templates/ksvc.yaml -------------------------------------------------------------------------------- /packs/ml-python-service/charts/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/ml-python-service/charts/templates/service.yaml -------------------------------------------------------------------------------- /packs/ml-python-service/charts/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/ml-python-service/charts/values.yaml -------------------------------------------------------------------------------- /packs/ml-python-service/pipeline.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/ml-python-service/pipeline.yaml -------------------------------------------------------------------------------- /packs/ml-python-service/preview/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/ml-python-service/preview/Chart.yaml -------------------------------------------------------------------------------- /packs/ml-python-service/preview/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/ml-python-service/preview/Makefile -------------------------------------------------------------------------------- /packs/ml-python-service/preview/requirements.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/ml-python-service/preview/requirements.yaml -------------------------------------------------------------------------------- /packs/ml-python-service/preview/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/ml-python-service/preview/values.yaml -------------------------------------------------------------------------------- /packs/ml-python-service/skaffold.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/ml-python-service/skaffold.yaml -------------------------------------------------------------------------------- /packs/ml-python-training/.dockerignore: -------------------------------------------------------------------------------- 1 | draft.toml 2 | charts/ 3 | NOTICE 4 | LICENSE 5 | README.md 6 | -------------------------------------------------------------------------------- /packs/ml-python-training/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/ml-python-training/.helmignore -------------------------------------------------------------------------------- /packs/ml-python-training/Dockerfile: -------------------------------------------------------------------------------- 1 | # Not used as the pipeline does not create an image -------------------------------------------------------------------------------- /packs/ml-python-training/charts/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/ml-python-training/charts/.helmignore -------------------------------------------------------------------------------- /packs/ml-python-training/charts/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/ml-python-training/charts/Chart.yaml -------------------------------------------------------------------------------- /packs/ml-python-training/charts/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/ml-python-training/charts/Makefile -------------------------------------------------------------------------------- /packs/ml-python-training/charts/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/ml-python-training/charts/templates/NOTES.txt -------------------------------------------------------------------------------- /packs/ml-python-training/charts/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/ml-python-training/charts/templates/_helpers.tpl -------------------------------------------------------------------------------- /packs/ml-python-training/charts/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/ml-python-training/charts/templates/deployment.yaml -------------------------------------------------------------------------------- /packs/ml-python-training/charts/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/ml-python-training/charts/templates/ingress.yaml -------------------------------------------------------------------------------- /packs/ml-python-training/charts/templates/ksvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/ml-python-training/charts/templates/ksvc.yaml -------------------------------------------------------------------------------- /packs/ml-python-training/charts/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/ml-python-training/charts/templates/service.yaml -------------------------------------------------------------------------------- /packs/ml-python-training/charts/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/ml-python-training/charts/values.yaml -------------------------------------------------------------------------------- /packs/ml-python-training/pipeline.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/ml-python-training/pipeline.yaml -------------------------------------------------------------------------------- /packs/ml-python-training/preview/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/ml-python-training/preview/Chart.yaml -------------------------------------------------------------------------------- /packs/ml-python-training/preview/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/ml-python-training/preview/Makefile -------------------------------------------------------------------------------- /packs/ml-python-training/preview/requirements.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/ml-python-training/preview/requirements.yaml -------------------------------------------------------------------------------- /packs/ml-python-training/preview/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/ml-python-training/preview/values.yaml -------------------------------------------------------------------------------- /packs/ml-python-training/skaffold.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/ml-python-training/skaffold.yaml -------------------------------------------------------------------------------- /packs/nop/pipeline.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/nop/pipeline.yaml -------------------------------------------------------------------------------- /packs/php/.dockerignore: -------------------------------------------------------------------------------- 1 | draft.toml 2 | charts/ 3 | NOTICE 4 | LICENSE 5 | README.md -------------------------------------------------------------------------------- /packs/php/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/php/.helmignore -------------------------------------------------------------------------------- /packs/php/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/php/Dockerfile -------------------------------------------------------------------------------- /packs/php/charts/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/php/charts/.helmignore -------------------------------------------------------------------------------- /packs/php/charts/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/php/charts/Chart.yaml -------------------------------------------------------------------------------- /packs/php/charts/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/php/charts/templates/NOTES.txt -------------------------------------------------------------------------------- /packs/php/charts/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/php/charts/templates/_helpers.tpl -------------------------------------------------------------------------------- /packs/php/charts/templates/canary.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/php/charts/templates/canary.yaml -------------------------------------------------------------------------------- /packs/php/charts/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/php/charts/templates/deployment.yaml -------------------------------------------------------------------------------- /packs/php/charts/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/php/charts/templates/hpa.yaml -------------------------------------------------------------------------------- /packs/php/charts/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/php/charts/templates/ingress.yaml -------------------------------------------------------------------------------- /packs/php/charts/templates/ksvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/php/charts/templates/ksvc.yaml -------------------------------------------------------------------------------- /packs/php/charts/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/php/charts/templates/service.yaml -------------------------------------------------------------------------------- /packs/php/charts/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/php/charts/values.yaml -------------------------------------------------------------------------------- /packs/php/pipeline.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/php/pipeline.yaml -------------------------------------------------------------------------------- /packs/php/preview/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/php/preview/Chart.yaml -------------------------------------------------------------------------------- /packs/php/preview/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/php/preview/Makefile -------------------------------------------------------------------------------- /packs/php/preview/requirements.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/php/preview/requirements.yaml -------------------------------------------------------------------------------- /packs/php/preview/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/php/preview/values.yaml -------------------------------------------------------------------------------- /packs/php/skaffold.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/php/skaffold.yaml -------------------------------------------------------------------------------- /packs/python/.dockerignore: -------------------------------------------------------------------------------- 1 | draft.toml 2 | charts/ 3 | NOTICE 4 | LICENSE 5 | README.md 6 | -------------------------------------------------------------------------------- /packs/python/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/python/.helmignore -------------------------------------------------------------------------------- /packs/python/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/python/Dockerfile -------------------------------------------------------------------------------- /packs/python/charts/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/python/charts/.helmignore -------------------------------------------------------------------------------- /packs/python/charts/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/python/charts/Chart.yaml -------------------------------------------------------------------------------- /packs/python/charts/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/python/charts/Makefile -------------------------------------------------------------------------------- /packs/python/charts/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/python/charts/templates/NOTES.txt -------------------------------------------------------------------------------- /packs/python/charts/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/python/charts/templates/_helpers.tpl -------------------------------------------------------------------------------- /packs/python/charts/templates/canary.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/python/charts/templates/canary.yaml -------------------------------------------------------------------------------- /packs/python/charts/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/python/charts/templates/deployment.yaml -------------------------------------------------------------------------------- /packs/python/charts/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/python/charts/templates/hpa.yaml -------------------------------------------------------------------------------- /packs/python/charts/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/python/charts/templates/ingress.yaml -------------------------------------------------------------------------------- /packs/python/charts/templates/ksvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/python/charts/templates/ksvc.yaml -------------------------------------------------------------------------------- /packs/python/charts/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/python/charts/templates/service.yaml -------------------------------------------------------------------------------- /packs/python/charts/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/python/charts/values.yaml -------------------------------------------------------------------------------- /packs/python/pipeline.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/python/pipeline.yaml -------------------------------------------------------------------------------- /packs/python/preview/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/python/preview/Chart.yaml -------------------------------------------------------------------------------- /packs/python/preview/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/python/preview/Makefile -------------------------------------------------------------------------------- /packs/python/preview/requirements.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/python/preview/requirements.yaml -------------------------------------------------------------------------------- /packs/python/preview/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/python/preview/values.yaml -------------------------------------------------------------------------------- /packs/python/skaffold.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/python/skaffold.yaml -------------------------------------------------------------------------------- /packs/ruby/.dockerignore: -------------------------------------------------------------------------------- 1 | draft.toml 2 | charts/ 3 | NOTICE 4 | LICENSE 5 | README.md -------------------------------------------------------------------------------- /packs/ruby/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/ruby/.helmignore -------------------------------------------------------------------------------- /packs/ruby/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/ruby/Dockerfile -------------------------------------------------------------------------------- /packs/ruby/charts/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/ruby/charts/.helmignore -------------------------------------------------------------------------------- /packs/ruby/charts/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/ruby/charts/Chart.yaml -------------------------------------------------------------------------------- /packs/ruby/charts/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/ruby/charts/Makefile -------------------------------------------------------------------------------- /packs/ruby/charts/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/ruby/charts/templates/NOTES.txt -------------------------------------------------------------------------------- /packs/ruby/charts/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/ruby/charts/templates/_helpers.tpl -------------------------------------------------------------------------------- /packs/ruby/charts/templates/canary.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/ruby/charts/templates/canary.yaml -------------------------------------------------------------------------------- /packs/ruby/charts/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/ruby/charts/templates/deployment.yaml -------------------------------------------------------------------------------- /packs/ruby/charts/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/ruby/charts/templates/hpa.yaml -------------------------------------------------------------------------------- /packs/ruby/charts/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/ruby/charts/templates/ingress.yaml -------------------------------------------------------------------------------- /packs/ruby/charts/templates/ksvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/ruby/charts/templates/ksvc.yaml -------------------------------------------------------------------------------- /packs/ruby/charts/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/ruby/charts/templates/service.yaml -------------------------------------------------------------------------------- /packs/ruby/charts/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/ruby/charts/values.yaml -------------------------------------------------------------------------------- /packs/ruby/pipeline.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/ruby/pipeline.yaml -------------------------------------------------------------------------------- /packs/ruby/preview/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/ruby/preview/Chart.yaml -------------------------------------------------------------------------------- /packs/ruby/preview/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/ruby/preview/Makefile -------------------------------------------------------------------------------- /packs/ruby/preview/requirements.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/ruby/preview/requirements.yaml -------------------------------------------------------------------------------- /packs/ruby/preview/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/ruby/preview/values.yaml -------------------------------------------------------------------------------- /packs/ruby/skaffold.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/ruby/skaffold.yaml -------------------------------------------------------------------------------- /packs/rust/.dockerignore: -------------------------------------------------------------------------------- 1 | Cargo.toml 2 | charts/ 3 | NOTICE 4 | LICENSE 5 | README.md -------------------------------------------------------------------------------- /packs/rust/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/rust/.helmignore -------------------------------------------------------------------------------- /packs/rust/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM debian:8 2 | EXPOSE 8080 3 | CMD ["/REPLACE_ME_APP_NAME"] 4 | COPY ./ / 5 | -------------------------------------------------------------------------------- /packs/rust/charts/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/rust/charts/.helmignore -------------------------------------------------------------------------------- /packs/rust/charts/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/rust/charts/Chart.yaml -------------------------------------------------------------------------------- /packs/rust/charts/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/rust/charts/Makefile -------------------------------------------------------------------------------- /packs/rust/charts/README.md: -------------------------------------------------------------------------------- 1 | # Rust application -------------------------------------------------------------------------------- /packs/rust/charts/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/rust/charts/templates/NOTES.txt -------------------------------------------------------------------------------- /packs/rust/charts/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/rust/charts/templates/_helpers.tpl -------------------------------------------------------------------------------- /packs/rust/charts/templates/canary.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/rust/charts/templates/canary.yaml -------------------------------------------------------------------------------- /packs/rust/charts/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/rust/charts/templates/deployment.yaml -------------------------------------------------------------------------------- /packs/rust/charts/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/rust/charts/templates/hpa.yaml -------------------------------------------------------------------------------- /packs/rust/charts/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/rust/charts/templates/ingress.yaml -------------------------------------------------------------------------------- /packs/rust/charts/templates/ksvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/rust/charts/templates/ksvc.yaml -------------------------------------------------------------------------------- /packs/rust/charts/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/rust/charts/templates/service.yaml -------------------------------------------------------------------------------- /packs/rust/charts/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/rust/charts/values.yaml -------------------------------------------------------------------------------- /packs/rust/pipeline.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/rust/pipeline.yaml -------------------------------------------------------------------------------- /packs/rust/preview/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/rust/preview/Chart.yaml -------------------------------------------------------------------------------- /packs/rust/preview/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/rust/preview/Makefile -------------------------------------------------------------------------------- /packs/rust/preview/requirements.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/rust/preview/requirements.yaml -------------------------------------------------------------------------------- /packs/rust/preview/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/rust/preview/values.yaml -------------------------------------------------------------------------------- /packs/rust/skaffold.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/rust/skaffold.yaml -------------------------------------------------------------------------------- /packs/scala/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/scala/Dockerfile -------------------------------------------------------------------------------- /packs/scala/charts/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/scala/charts/.helmignore -------------------------------------------------------------------------------- /packs/scala/charts/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/scala/charts/Chart.yaml -------------------------------------------------------------------------------- /packs/scala/charts/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/scala/charts/Makefile -------------------------------------------------------------------------------- /packs/scala/charts/README.md: -------------------------------------------------------------------------------- 1 | # Scala Akka HTTP Microservice 2 | -------------------------------------------------------------------------------- /packs/scala/charts/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/scala/charts/templates/NOTES.txt -------------------------------------------------------------------------------- /packs/scala/charts/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/scala/charts/templates/_helpers.tpl -------------------------------------------------------------------------------- /packs/scala/charts/templates/canary.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/scala/charts/templates/canary.yaml -------------------------------------------------------------------------------- /packs/scala/charts/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/scala/charts/templates/deployment.yaml -------------------------------------------------------------------------------- /packs/scala/charts/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/scala/charts/templates/hpa.yaml -------------------------------------------------------------------------------- /packs/scala/charts/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/scala/charts/templates/ingress.yaml -------------------------------------------------------------------------------- /packs/scala/charts/templates/ksvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/scala/charts/templates/ksvc.yaml -------------------------------------------------------------------------------- /packs/scala/charts/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/scala/charts/templates/service.yaml -------------------------------------------------------------------------------- /packs/scala/charts/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/scala/charts/values.yaml -------------------------------------------------------------------------------- /packs/scala/pipeline.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/scala/pipeline.yaml -------------------------------------------------------------------------------- /packs/scala/preview/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/scala/preview/Chart.yaml -------------------------------------------------------------------------------- /packs/scala/preview/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/scala/preview/Makefile -------------------------------------------------------------------------------- /packs/scala/preview/requirements.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/scala/preview/requirements.yaml -------------------------------------------------------------------------------- /packs/scala/preview/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/scala/preview/values.yaml -------------------------------------------------------------------------------- /packs/scala/skaffold.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/scala/skaffold.yaml -------------------------------------------------------------------------------- /packs/swift/.dockerignore: -------------------------------------------------------------------------------- 1 | draft.toml 2 | charts/ 3 | NOTICE 4 | LICENSE 5 | README.md -------------------------------------------------------------------------------- /packs/swift/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/swift/.helmignore -------------------------------------------------------------------------------- /packs/swift/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/swift/Dockerfile -------------------------------------------------------------------------------- /packs/swift/chart/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/swift/chart/.helmignore -------------------------------------------------------------------------------- /packs/swift/chart/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/swift/chart/Chart.yaml -------------------------------------------------------------------------------- /packs/swift/chart/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/swift/chart/templates/NOTES.txt -------------------------------------------------------------------------------- /packs/swift/chart/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/swift/chart/templates/_helpers.tpl -------------------------------------------------------------------------------- /packs/swift/chart/templates/canary.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/swift/chart/templates/canary.yaml -------------------------------------------------------------------------------- /packs/swift/chart/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/swift/chart/templates/deployment.yaml -------------------------------------------------------------------------------- /packs/swift/chart/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/swift/chart/templates/hpa.yaml -------------------------------------------------------------------------------- /packs/swift/chart/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/swift/chart/templates/ingress.yaml -------------------------------------------------------------------------------- /packs/swift/chart/templates/ksvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/swift/chart/templates/ksvc.yaml -------------------------------------------------------------------------------- /packs/swift/chart/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/swift/chart/templates/service.yaml -------------------------------------------------------------------------------- /packs/swift/chart/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/swift/chart/values.yaml -------------------------------------------------------------------------------- /packs/swift/skaffold.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/swift/skaffold.yaml -------------------------------------------------------------------------------- /packs/typescript/.dockerignore: -------------------------------------------------------------------------------- 1 | draft.toml 2 | charts/ 3 | NOTICE 4 | LICENSE 5 | README.md -------------------------------------------------------------------------------- /packs/typescript/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/typescript/.helmignore -------------------------------------------------------------------------------- /packs/typescript/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/typescript/Dockerfile -------------------------------------------------------------------------------- /packs/typescript/charts/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/typescript/charts/.helmignore -------------------------------------------------------------------------------- /packs/typescript/charts/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/typescript/charts/Chart.yaml -------------------------------------------------------------------------------- /packs/typescript/charts/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/typescript/charts/Makefile -------------------------------------------------------------------------------- /packs/typescript/charts/README.md: -------------------------------------------------------------------------------- 1 | # Javascript application -------------------------------------------------------------------------------- /packs/typescript/charts/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/typescript/charts/templates/NOTES.txt -------------------------------------------------------------------------------- /packs/typescript/charts/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/typescript/charts/templates/_helpers.tpl -------------------------------------------------------------------------------- /packs/typescript/charts/templates/canary.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/typescript/charts/templates/canary.yaml -------------------------------------------------------------------------------- /packs/typescript/charts/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/typescript/charts/templates/deployment.yaml -------------------------------------------------------------------------------- /packs/typescript/charts/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/typescript/charts/templates/hpa.yaml -------------------------------------------------------------------------------- /packs/typescript/charts/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/typescript/charts/templates/ingress.yaml -------------------------------------------------------------------------------- /packs/typescript/charts/templates/ksvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/typescript/charts/templates/ksvc.yaml -------------------------------------------------------------------------------- /packs/typescript/charts/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/typescript/charts/templates/service.yaml -------------------------------------------------------------------------------- /packs/typescript/charts/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/typescript/charts/values.yaml -------------------------------------------------------------------------------- /packs/typescript/pipeline.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/typescript/pipeline.yaml -------------------------------------------------------------------------------- /packs/typescript/preview/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/typescript/preview/Chart.yaml -------------------------------------------------------------------------------- /packs/typescript/preview/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/typescript/preview/Makefile -------------------------------------------------------------------------------- /packs/typescript/preview/requirements.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/typescript/preview/requirements.yaml -------------------------------------------------------------------------------- /packs/typescript/preview/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/typescript/preview/values.yaml -------------------------------------------------------------------------------- /packs/typescript/skaffold.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkins-x-buildpacks/jenkins-x-kubernetes/HEAD/packs/typescript/skaffold.yaml --------------------------------------------------------------------------------