I hereby claim:
- I am scostello on github.
- I am scostello (https://keybase.io/scostello) on keybase.
- I have a public key ASBge9DsTJrVkRecaRdx6IPN5NaQWZbhrPLNCO-otv4ykwo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| # Source: my-api/templates/deployment.yaml | |
| apiVersion: apps/v1 | |
| kind: Deployment | |
| metadata: | |
| name: local-release-my-api | |
| labels: | |
| app.kubernetes.io/name: my-api | |
| helm.sh/chart: my-api-0.1.0 | |
| app.kubernetes.io/instance: local-release | |
| app.kubernetes.io/managed-by: Tiller |
| --- | |
| # Source: my-api/templates/configmap.yaml | |
| apiVersion: v1 | |
| kind: ConfigMap | |
| metadata: | |
| name: local-release-my-api-env | |
| data: | |
| # API | |
| API_HOST: "0.0.0.0" | |
| API_PORT: "4000" |
├── .babelrc
├── Dockerfile
├── package.json
└── k8s
├── .helmignore
├── Chart.yaml
├── templates
│ ├── NOTES.txt
│ ├── _helpers.tpl├── .babelrc
├── .dockerignore
├── docker-compose.yml
├── Dockerfile
├── package.json
└── src
└── index.js| { | |
| "presets": [ | |
| [ | |
| "@babel/preset-env", | |
| { | |
| "targets": { | |
| "node": "current" | |
| } | |
| } | |
| ], |