Instantly create, update and remove Kubernetes ConfigMaps with Serverless Components.
$ npm install -g serverlessJust create a serverless.yml file
$ touch serverless.ymlThen create a .env file
$ touch .envUpdate the .env file with information about your Kubernetes setup
# .env KUBERNETES_ENDPOINT=https://cluster.example.com KUBERNETES_PORT=6443 KUBERNETES_SERVICE_ACCOUNT_TOKEN=xxxx KUBERNETES_SKIP_TLS_VERIFY=false # serverless.yml org: acme app: todo name: todo-kubernetes-configmap component: kubernetes-configmap@dev inputs: namespace: 'default' # default is `'default'` name: my-config-map data: # default is `{}` foo: bar baz: qux$ serverlessCheckout the Serverless Components repo for more information.