Created
May 13, 2019 15:25
-
-
Save lalyos/41c051a9cf417cd3dc41f6ae25a16a23 to your computer and use it in GitHub Desktop.
2 node k3s cluster
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '3' | |
services: | |
server: | |
# v0.2.0-rc5 | |
# v0.1.0-rc1 | |
image: rancher/k3s:v0.5.0 | |
command: server --disable-agent | |
environment: | |
- K3S_CLUSTER_SECRET=somethingtotallyrandom | |
- K3S_KUBECONFIG_OUTPUT=/output/kubeconfig.yaml | |
- K3S_KUBECONFIG_MODE=666 | |
volumes: | |
- k3s-server:/var/lib/rancher/k3s | |
# This is just so that we get the kubeconfig file out | |
- .:/output | |
ports: | |
- 6443:6443 | |
node: | |
image: rancher/k3s:v0.5.0 | |
tmpfs: | |
- /run | |
- /var/run | |
privileged: true | |
environment: | |
- K3S_URL=https://server:6443 | |
- K3S_CLUSTER_SECRET=somethingtotallyrandom | |
volumes: | |
k3s-server: {} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment