Sha256: fc3d16168c2cec4c360cb179a53f2841f1f0e140902fa399b70fedd3f8e7b783
Contents?: true
Size: 721 Bytes
Versions: 5
Compression:
Stored size: 721 Bytes
Contents
## Config The `config.rb` is where you can configure Kubes settings. ```ruby Kubes.configure do |config| config.repo = "112233445566.dkr.ecr.us-west-2.amazonaws.com/demo" config.logger.level = "info" # auto-switching # config.kubectl.context = "dev-services" end ``` This is where the `--repo` from `kubes init` got saved. The other options are covered in the [Env Config Docs]({% link _docs/config/env.md %}). ## Dockerfie The `Dockerfile` is a simple starter example that just runs nginx Dockerfile: # Simple example starter FROM nginx EXPOSE 80 CMD ["nginx", "-g", "daemon off;"] Note: If your project already has a Dockerfile, kubes will use that instead of generating a starter one.
Version data entries
5 entries across 5 versions & 1 rubygems