├── .gitignore ├── DEVELOPERS.md ├── Dockerfile.ajv ├── LICENSE ├── Makefile ├── README.md ├── aks-terraform ├── README.md ├── bundle.json └── cnab │ ├── Dockerfile │ └── app │ └── tf │ ├── aks.tf │ ├── main.tf │ ├── output.tf │ └── params.tf ├── aks ├── README.md ├── bundle.json ├── cnab │ ├── Dockerfile │ └── app │ │ ├── rbac-config.yaml │ │ └── run ├── duffle.toml └── example-aks-creds.yaml ├── ansible-azurevm ├── bundle.json └── cnab │ ├── Dockerfile │ └── app │ └── playbooks │ ├── install.yaml │ └── uninstall.yaml ├── ansiblebase ├── README.md ├── bundle.json └── cnab │ ├── Dockerfile │ └── app │ ├── playbooks │ ├── install.yaml │ └── uninstall.yaml │ └── run ├── arm-aci ├── bundle.json └── cnab │ ├── Dockerfile │ └── app │ └── arm │ ├── parameters.json │ └── template.json ├── armbase ├── Gopkg.lock ├── Gopkg.toml ├── Makefile ├── README.md ├── bundle.json ├── cnab │ ├── Dockerfile │ └── app │ │ ├── arm │ │ ├── README.md │ │ ├── parameters.json │ │ └── template.json │ │ ├── armup │ │ └── run ├── duffle.toml ├── example-parameters.json └── main.go ├── brigade.js ├── compose ├── bundle.json └── cnab │ ├── Dockerfile │ └── app │ ├── Makefile │ └── docker-compose.yml ├── example-credentials ├── README.md ├── bundle.json └── cnab │ ├── Dockerfile │ └── app │ └── run ├── example-run ├── README.md ├── bundle.json └── cnab │ ├── Dockerfile │ └── app │ └── run ├── example-voting-app-sqlserver ├── README.md ├── bundle.json └── cnab │ ├── Dockerfile │ └── app │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── docker-compose.yml │ ├── result-app │ ├── Dockerfile │ ├── package.json │ ├── server.js │ └── views │ │ ├── app.js │ │ ├── index.html │ │ ├── socket.io.js │ │ └── stylesheets │ │ └── style.css │ ├── voting-app │ ├── Dockerfile │ ├── app.py │ ├── requirements.txt │ ├── static │ │ └── stylesheets │ │ │ └── style.css │ ├── templates │ │ └── index.html │ └── utils │ │ └── __init__.py │ └── worker │ ├── Dockerfile │ ├── dependencies │ └── sqljdbc4.jar │ ├── pom.xml │ └── src │ └── main │ └── java │ └── worker │ └── Worker.java ├── helloazure ├── bundle.json └── cnab │ ├── README.md │ ├── app │ └── run │ └── azure-packer.json ├── hellohelm ├── bundle.json ├── cnab │ ├── Dockerfile │ └── app │ │ ├── Makefile │ │ └── charts │ │ └── alpine │ │ ├── Chart.yaml │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── templates │ │ ├── _helpers.tpl │ │ └── alpine-pod.yaml │ │ └── values.yaml ├── duffle.toml └── values.toml ├── helloworld ├── bundle.json ├── cnab │ ├── Dockerfile │ └── app │ │ └── run └── duffle.toml ├── k8sbase ├── README.md ├── bundle.json └── cnab │ ├── Dockerfile │ └── app │ ├── Makefile │ ├── charts │ └── README.md │ └── run ├── makebase ├── README.md ├── bundle.json └── cnab │ ├── Dockerfile │ └── app │ ├── Makefile │ └── run ├── openfaas ├── README.md ├── cnab │ ├── Dockerfile │ └── app │ │ ├── Makefile │ │ ├── docker-compose.yml │ │ └── prometheus │ │ ├── alert.rules.yml │ │ ├── alertmanager.yml │ │ └── prometheus.yml ├── duffle.json └── images │ └── duffle_openfaas.gif ├── pulumibase ├── README.md ├── bundle.json └── cnab │ ├── Dockerfile │ └── app │ ├── pulumi │ ├── .gitignore │ ├── Pulumi.pulumi-cnab-dev.yaml │ ├── Pulumi.yaml │ ├── index.ts │ ├── package-lock.json │ ├── package.json │ └── tsconfig.json │ └── run ├── scripts └── test-functional.sh ├── terraform ├── README.md ├── bundle.json └── cnab │ ├── Dockerfile │ └── app │ ├── init-backend │ ├── run │ └── tf │ └── main.tf ├── vote ├── README.md ├── bundle.json ├── cnab │ ├── Dockerfile │ └── app │ │ ├── Makefile │ │ └── charts │ │ ├── README.md │ │ └── vote │ │ ├── Chart.yaml │ │ └── templates │ │ ├── _helpers.tpl │ │ ├── db-deployment.yaml │ │ ├── db-service.yaml │ │ ├── redis-deployment.yaml │ │ ├── redis-service.yaml │ │ ├── result-deployment.yaml │ │ ├── result-service.yaml │ │ ├── vote-deployment.yaml │ │ ├── vote-service.yaml │ │ └── worker-deployment.yaml └── duffle.toml ├── wordpress-mysql ├── README.md ├── bundle.json ├── cnab │ ├── Dockerfile │ └── app │ │ └── run ├── duffle.toml └── example-wordpress-mysql-credential-set.yaml └── wordpress ├── README.md ├── bundle.json ├── cnab ├── Dockerfile └── app │ └── run ├── duffle.toml └── example-wordpress-credential-set.yaml /.gitignore: -------------------------------------------------------------------------------- 1 | armbase/bin 2 | vendor 3 | *.cnab 4 | -------------------------------------------------------------------------------- /DEVELOPERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/DEVELOPERS.md -------------------------------------------------------------------------------- /Dockerfile.ajv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/Dockerfile.ajv -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/README.md -------------------------------------------------------------------------------- /aks-terraform/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/aks-terraform/README.md -------------------------------------------------------------------------------- /aks-terraform/bundle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/aks-terraform/bundle.json -------------------------------------------------------------------------------- /aks-terraform/cnab/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/aks-terraform/cnab/Dockerfile -------------------------------------------------------------------------------- /aks-terraform/cnab/app/tf/aks.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/aks-terraform/cnab/app/tf/aks.tf -------------------------------------------------------------------------------- /aks-terraform/cnab/app/tf/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/aks-terraform/cnab/app/tf/main.tf -------------------------------------------------------------------------------- /aks-terraform/cnab/app/tf/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/aks-terraform/cnab/app/tf/output.tf -------------------------------------------------------------------------------- /aks-terraform/cnab/app/tf/params.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/aks-terraform/cnab/app/tf/params.tf -------------------------------------------------------------------------------- /aks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/aks/README.md -------------------------------------------------------------------------------- /aks/bundle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/aks/bundle.json -------------------------------------------------------------------------------- /aks/cnab/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/aks/cnab/Dockerfile -------------------------------------------------------------------------------- /aks/cnab/app/rbac-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/aks/cnab/app/rbac-config.yaml -------------------------------------------------------------------------------- /aks/cnab/app/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/aks/cnab/app/run -------------------------------------------------------------------------------- /aks/duffle.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/aks/duffle.toml -------------------------------------------------------------------------------- /aks/example-aks-creds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/aks/example-aks-creds.yaml -------------------------------------------------------------------------------- /ansible-azurevm/bundle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/ansible-azurevm/bundle.json -------------------------------------------------------------------------------- /ansible-azurevm/cnab/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/ansible-azurevm/cnab/Dockerfile -------------------------------------------------------------------------------- /ansible-azurevm/cnab/app/playbooks/install.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/ansible-azurevm/cnab/app/playbooks/install.yaml -------------------------------------------------------------------------------- /ansible-azurevm/cnab/app/playbooks/uninstall.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/ansible-azurevm/cnab/app/playbooks/uninstall.yaml -------------------------------------------------------------------------------- /ansiblebase/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/ansiblebase/README.md -------------------------------------------------------------------------------- /ansiblebase/bundle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/ansiblebase/bundle.json -------------------------------------------------------------------------------- /ansiblebase/cnab/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/ansiblebase/cnab/Dockerfile -------------------------------------------------------------------------------- /ansiblebase/cnab/app/playbooks/install.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/ansiblebase/cnab/app/playbooks/install.yaml -------------------------------------------------------------------------------- /ansiblebase/cnab/app/playbooks/uninstall.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/ansiblebase/cnab/app/playbooks/uninstall.yaml -------------------------------------------------------------------------------- /ansiblebase/cnab/app/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/ansiblebase/cnab/app/run -------------------------------------------------------------------------------- /arm-aci/bundle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/arm-aci/bundle.json -------------------------------------------------------------------------------- /arm-aci/cnab/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/arm-aci/cnab/Dockerfile -------------------------------------------------------------------------------- /arm-aci/cnab/app/arm/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/arm-aci/cnab/app/arm/parameters.json -------------------------------------------------------------------------------- /arm-aci/cnab/app/arm/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/arm-aci/cnab/app/arm/template.json -------------------------------------------------------------------------------- /armbase/Gopkg.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/armbase/Gopkg.lock -------------------------------------------------------------------------------- /armbase/Gopkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/armbase/Gopkg.toml -------------------------------------------------------------------------------- /armbase/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/armbase/Makefile -------------------------------------------------------------------------------- /armbase/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/armbase/README.md -------------------------------------------------------------------------------- /armbase/bundle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/armbase/bundle.json -------------------------------------------------------------------------------- /armbase/cnab/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/armbase/cnab/Dockerfile -------------------------------------------------------------------------------- /armbase/cnab/app/arm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/armbase/cnab/app/arm/README.md -------------------------------------------------------------------------------- /armbase/cnab/app/arm/parameters.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /armbase/cnab/app/arm/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/armbase/cnab/app/arm/template.json -------------------------------------------------------------------------------- /armbase/cnab/app/armup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/armbase/cnab/app/armup -------------------------------------------------------------------------------- /armbase/cnab/app/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/armbase/cnab/app/run -------------------------------------------------------------------------------- /armbase/duffle.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/armbase/duffle.toml -------------------------------------------------------------------------------- /armbase/example-parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/armbase/example-parameters.json -------------------------------------------------------------------------------- /armbase/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/armbase/main.go -------------------------------------------------------------------------------- /brigade.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/brigade.js -------------------------------------------------------------------------------- /compose/bundle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/compose/bundle.json -------------------------------------------------------------------------------- /compose/cnab/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/compose/cnab/Dockerfile -------------------------------------------------------------------------------- /compose/cnab/app/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/compose/cnab/app/Makefile -------------------------------------------------------------------------------- /compose/cnab/app/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/compose/cnab/app/docker-compose.yml -------------------------------------------------------------------------------- /example-credentials/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/example-credentials/README.md -------------------------------------------------------------------------------- /example-credentials/bundle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/example-credentials/bundle.json -------------------------------------------------------------------------------- /example-credentials/cnab/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/example-credentials/cnab/Dockerfile -------------------------------------------------------------------------------- /example-credentials/cnab/app/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/example-credentials/cnab/app/run -------------------------------------------------------------------------------- /example-run/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/example-run/README.md -------------------------------------------------------------------------------- /example-run/bundle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/example-run/bundle.json -------------------------------------------------------------------------------- /example-run/cnab/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/example-run/cnab/Dockerfile -------------------------------------------------------------------------------- /example-run/cnab/app/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/example-run/cnab/app/run -------------------------------------------------------------------------------- /example-voting-app-sqlserver/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/example-voting-app-sqlserver/README.md -------------------------------------------------------------------------------- /example-voting-app-sqlserver/bundle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/example-voting-app-sqlserver/bundle.json -------------------------------------------------------------------------------- /example-voting-app-sqlserver/cnab/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/example-voting-app-sqlserver/cnab/Dockerfile -------------------------------------------------------------------------------- /example-voting-app-sqlserver/cnab/app/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/example-voting-app-sqlserver/cnab/app/LICENSE -------------------------------------------------------------------------------- /example-voting-app-sqlserver/cnab/app/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/example-voting-app-sqlserver/cnab/app/Makefile -------------------------------------------------------------------------------- /example-voting-app-sqlserver/cnab/app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/example-voting-app-sqlserver/cnab/app/README.md -------------------------------------------------------------------------------- /example-voting-app-sqlserver/cnab/app/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/example-voting-app-sqlserver/cnab/app/docker-compose.yml -------------------------------------------------------------------------------- /example-voting-app-sqlserver/cnab/app/result-app/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/example-voting-app-sqlserver/cnab/app/result-app/Dockerfile -------------------------------------------------------------------------------- /example-voting-app-sqlserver/cnab/app/result-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/example-voting-app-sqlserver/cnab/app/result-app/package.json -------------------------------------------------------------------------------- /example-voting-app-sqlserver/cnab/app/result-app/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/example-voting-app-sqlserver/cnab/app/result-app/server.js -------------------------------------------------------------------------------- /example-voting-app-sqlserver/cnab/app/result-app/views/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/example-voting-app-sqlserver/cnab/app/result-app/views/app.js -------------------------------------------------------------------------------- /example-voting-app-sqlserver/cnab/app/result-app/views/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/example-voting-app-sqlserver/cnab/app/result-app/views/index.html -------------------------------------------------------------------------------- /example-voting-app-sqlserver/cnab/app/result-app/views/socket.io.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/example-voting-app-sqlserver/cnab/app/result-app/views/socket.io.js -------------------------------------------------------------------------------- /example-voting-app-sqlserver/cnab/app/result-app/views/stylesheets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/example-voting-app-sqlserver/cnab/app/result-app/views/stylesheets/style.css -------------------------------------------------------------------------------- /example-voting-app-sqlserver/cnab/app/voting-app/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/example-voting-app-sqlserver/cnab/app/voting-app/Dockerfile -------------------------------------------------------------------------------- /example-voting-app-sqlserver/cnab/app/voting-app/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/example-voting-app-sqlserver/cnab/app/voting-app/app.py -------------------------------------------------------------------------------- /example-voting-app-sqlserver/cnab/app/voting-app/requirements.txt: -------------------------------------------------------------------------------- 1 | Flask 2 | Redis -------------------------------------------------------------------------------- /example-voting-app-sqlserver/cnab/app/voting-app/static/stylesheets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/example-voting-app-sqlserver/cnab/app/voting-app/static/stylesheets/style.css -------------------------------------------------------------------------------- /example-voting-app-sqlserver/cnab/app/voting-app/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/example-voting-app-sqlserver/cnab/app/voting-app/templates/index.html -------------------------------------------------------------------------------- /example-voting-app-sqlserver/cnab/app/voting-app/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/example-voting-app-sqlserver/cnab/app/voting-app/utils/__init__.py -------------------------------------------------------------------------------- /example-voting-app-sqlserver/cnab/app/worker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/example-voting-app-sqlserver/cnab/app/worker/Dockerfile -------------------------------------------------------------------------------- /example-voting-app-sqlserver/cnab/app/worker/dependencies/sqljdbc4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/example-voting-app-sqlserver/cnab/app/worker/dependencies/sqljdbc4.jar -------------------------------------------------------------------------------- /example-voting-app-sqlserver/cnab/app/worker/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/example-voting-app-sqlserver/cnab/app/worker/pom.xml -------------------------------------------------------------------------------- /example-voting-app-sqlserver/cnab/app/worker/src/main/java/worker/Worker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/example-voting-app-sqlserver/cnab/app/worker/src/main/java/worker/Worker.java -------------------------------------------------------------------------------- /helloazure/bundle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/helloazure/bundle.json -------------------------------------------------------------------------------- /helloazure/cnab/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/helloazure/cnab/README.md -------------------------------------------------------------------------------- /helloazure/cnab/app/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/helloazure/cnab/app/run -------------------------------------------------------------------------------- /helloazure/cnab/azure-packer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/helloazure/cnab/azure-packer.json -------------------------------------------------------------------------------- /hellohelm/bundle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/hellohelm/bundle.json -------------------------------------------------------------------------------- /hellohelm/cnab/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/hellohelm/cnab/Dockerfile -------------------------------------------------------------------------------- /hellohelm/cnab/app/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/hellohelm/cnab/app/Makefile -------------------------------------------------------------------------------- /hellohelm/cnab/app/charts/alpine/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/hellohelm/cnab/app/charts/alpine/Chart.yaml -------------------------------------------------------------------------------- /hellohelm/cnab/app/charts/alpine/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM alpine:3.7 2 | 3 | CMD ["sleep", "9000"] -------------------------------------------------------------------------------- /hellohelm/cnab/app/charts/alpine/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/hellohelm/cnab/app/charts/alpine/README.md -------------------------------------------------------------------------------- /hellohelm/cnab/app/charts/alpine/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/hellohelm/cnab/app/charts/alpine/templates/_helpers.tpl -------------------------------------------------------------------------------- /hellohelm/cnab/app/charts/alpine/templates/alpine-pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/hellohelm/cnab/app/charts/alpine/templates/alpine-pod.yaml -------------------------------------------------------------------------------- /hellohelm/cnab/app/charts/alpine/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/hellohelm/cnab/app/charts/alpine/values.yaml -------------------------------------------------------------------------------- /hellohelm/duffle.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/hellohelm/duffle.toml -------------------------------------------------------------------------------- /hellohelm/values.toml: -------------------------------------------------------------------------------- 1 | greeting = "YO" -------------------------------------------------------------------------------- /helloworld/bundle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/helloworld/bundle.json -------------------------------------------------------------------------------- /helloworld/cnab/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/helloworld/cnab/Dockerfile -------------------------------------------------------------------------------- /helloworld/cnab/app/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/helloworld/cnab/app/run -------------------------------------------------------------------------------- /helloworld/duffle.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/helloworld/duffle.toml -------------------------------------------------------------------------------- /k8sbase/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /k8sbase/bundle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/k8sbase/bundle.json -------------------------------------------------------------------------------- /k8sbase/cnab/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/k8sbase/cnab/Dockerfile -------------------------------------------------------------------------------- /k8sbase/cnab/app/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/k8sbase/cnab/app/Makefile -------------------------------------------------------------------------------- /k8sbase/cnab/app/charts/README.md: -------------------------------------------------------------------------------- 1 | Charts go here -------------------------------------------------------------------------------- /k8sbase/cnab/app/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/k8sbase/cnab/app/run -------------------------------------------------------------------------------- /makebase/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/makebase/README.md -------------------------------------------------------------------------------- /makebase/bundle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/makebase/bundle.json -------------------------------------------------------------------------------- /makebase/cnab/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/makebase/cnab/Dockerfile -------------------------------------------------------------------------------- /makebase/cnab/app/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/makebase/cnab/app/Makefile -------------------------------------------------------------------------------- /makebase/cnab/app/run: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | cd /cnab/app 3 | make $CNAB_ACTION -------------------------------------------------------------------------------- /openfaas/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/openfaas/README.md -------------------------------------------------------------------------------- /openfaas/cnab/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/openfaas/cnab/Dockerfile -------------------------------------------------------------------------------- /openfaas/cnab/app/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/openfaas/cnab/app/Makefile -------------------------------------------------------------------------------- /openfaas/cnab/app/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/openfaas/cnab/app/docker-compose.yml -------------------------------------------------------------------------------- /openfaas/cnab/app/prometheus/alert.rules.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/openfaas/cnab/app/prometheus/alert.rules.yml -------------------------------------------------------------------------------- /openfaas/cnab/app/prometheus/alertmanager.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/openfaas/cnab/app/prometheus/alertmanager.yml -------------------------------------------------------------------------------- /openfaas/cnab/app/prometheus/prometheus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/openfaas/cnab/app/prometheus/prometheus.yml -------------------------------------------------------------------------------- /openfaas/duffle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/openfaas/duffle.json -------------------------------------------------------------------------------- /openfaas/images/duffle_openfaas.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/openfaas/images/duffle_openfaas.gif -------------------------------------------------------------------------------- /pulumibase/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/pulumibase/README.md -------------------------------------------------------------------------------- /pulumibase/bundle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/pulumibase/bundle.json -------------------------------------------------------------------------------- /pulumibase/cnab/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/pulumibase/cnab/Dockerfile -------------------------------------------------------------------------------- /pulumibase/cnab/app/pulumi/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | /node_modules/ 3 | -------------------------------------------------------------------------------- /pulumibase/cnab/app/pulumi/Pulumi.pulumi-cnab-dev.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /pulumibase/cnab/app/pulumi/Pulumi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/pulumibase/cnab/app/pulumi/Pulumi.yaml -------------------------------------------------------------------------------- /pulumibase/cnab/app/pulumi/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/pulumibase/cnab/app/pulumi/index.ts -------------------------------------------------------------------------------- /pulumibase/cnab/app/pulumi/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/pulumibase/cnab/app/pulumi/package-lock.json -------------------------------------------------------------------------------- /pulumibase/cnab/app/pulumi/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/pulumibase/cnab/app/pulumi/package.json -------------------------------------------------------------------------------- /pulumibase/cnab/app/pulumi/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/pulumibase/cnab/app/pulumi/tsconfig.json -------------------------------------------------------------------------------- /pulumibase/cnab/app/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/pulumibase/cnab/app/run -------------------------------------------------------------------------------- /scripts/test-functional.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/scripts/test-functional.sh -------------------------------------------------------------------------------- /terraform/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/terraform/README.md -------------------------------------------------------------------------------- /terraform/bundle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/terraform/bundle.json -------------------------------------------------------------------------------- /terraform/cnab/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/terraform/cnab/Dockerfile -------------------------------------------------------------------------------- /terraform/cnab/app/init-backend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/terraform/cnab/app/init-backend -------------------------------------------------------------------------------- /terraform/cnab/app/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/terraform/cnab/app/run -------------------------------------------------------------------------------- /terraform/cnab/app/tf/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/terraform/cnab/app/tf/main.tf -------------------------------------------------------------------------------- /vote/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/vote/README.md -------------------------------------------------------------------------------- /vote/bundle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/vote/bundle.json -------------------------------------------------------------------------------- /vote/cnab/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/vote/cnab/Dockerfile -------------------------------------------------------------------------------- /vote/cnab/app/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/vote/cnab/app/Makefile -------------------------------------------------------------------------------- /vote/cnab/app/charts/README.md: -------------------------------------------------------------------------------- 1 | Charts go here -------------------------------------------------------------------------------- /vote/cnab/app/charts/vote/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/vote/cnab/app/charts/vote/Chart.yaml -------------------------------------------------------------------------------- /vote/cnab/app/charts/vote/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/vote/cnab/app/charts/vote/templates/_helpers.tpl -------------------------------------------------------------------------------- /vote/cnab/app/charts/vote/templates/db-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/vote/cnab/app/charts/vote/templates/db-deployment.yaml -------------------------------------------------------------------------------- /vote/cnab/app/charts/vote/templates/db-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/vote/cnab/app/charts/vote/templates/db-service.yaml -------------------------------------------------------------------------------- /vote/cnab/app/charts/vote/templates/redis-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/vote/cnab/app/charts/vote/templates/redis-deployment.yaml -------------------------------------------------------------------------------- /vote/cnab/app/charts/vote/templates/redis-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/vote/cnab/app/charts/vote/templates/redis-service.yaml -------------------------------------------------------------------------------- /vote/cnab/app/charts/vote/templates/result-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/vote/cnab/app/charts/vote/templates/result-deployment.yaml -------------------------------------------------------------------------------- /vote/cnab/app/charts/vote/templates/result-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/vote/cnab/app/charts/vote/templates/result-service.yaml -------------------------------------------------------------------------------- /vote/cnab/app/charts/vote/templates/vote-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/vote/cnab/app/charts/vote/templates/vote-deployment.yaml -------------------------------------------------------------------------------- /vote/cnab/app/charts/vote/templates/vote-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/vote/cnab/app/charts/vote/templates/vote-service.yaml -------------------------------------------------------------------------------- /vote/cnab/app/charts/vote/templates/worker-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/vote/cnab/app/charts/vote/templates/worker-deployment.yaml -------------------------------------------------------------------------------- /vote/duffle.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/vote/duffle.toml -------------------------------------------------------------------------------- /wordpress-mysql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/wordpress-mysql/README.md -------------------------------------------------------------------------------- /wordpress-mysql/bundle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/wordpress-mysql/bundle.json -------------------------------------------------------------------------------- /wordpress-mysql/cnab/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/wordpress-mysql/cnab/Dockerfile -------------------------------------------------------------------------------- /wordpress-mysql/cnab/app/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/wordpress-mysql/cnab/app/run -------------------------------------------------------------------------------- /wordpress-mysql/duffle.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/wordpress-mysql/duffle.toml -------------------------------------------------------------------------------- /wordpress-mysql/example-wordpress-mysql-credential-set.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/wordpress-mysql/example-wordpress-mysql-credential-set.yaml -------------------------------------------------------------------------------- /wordpress/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/wordpress/README.md -------------------------------------------------------------------------------- /wordpress/bundle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/wordpress/bundle.json -------------------------------------------------------------------------------- /wordpress/cnab/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/wordpress/cnab/Dockerfile -------------------------------------------------------------------------------- /wordpress/cnab/app/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/wordpress/cnab/app/run -------------------------------------------------------------------------------- /wordpress/duffle.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/wordpress/duffle.toml -------------------------------------------------------------------------------- /wordpress/example-wordpress-credential-set.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/example-bundles/HEAD/wordpress/example-wordpress-credential-set.yaml --------------------------------------------------------------------------------