1
0
Fork 0

add gitignore

This commit is contained in:
Massaki Archambault 2020-05-14 09:52:49 -04:00
parent b454e5ec1f
commit 4ca0a7e325
2 changed files with 42 additions and 3 deletions

39
.gitignore vendored Normal file
View File

@ -0,0 +1,39 @@
# Created by https://www.gitignore.io/api/vim,code
# Edit at https://www.gitignore.io/?templates=vim,code
### Code ###
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
### Vim ###
# Swap
[._]*.s[a-v][a-z]
[._]*.sw[a-p]
[._]s[a-rt-v][a-z]
[._]ss[a-gi-z]
[._]sw[a-p]
# Session
Session.vim
Sessionx.vim
# Temporary
.netrwhist
*~
# Auto-generated tag files
tags
# Persistent undo
[._]*.un~
# Coc configuration directory
.vim
# End of https://www.gitignore.io/api/vim,code
.env
build/

View File

@ -9,8 +9,8 @@ services:
- /var/run
privileged: true
environment:
- K3S_CLUSTER_SECRET=${K3S_CLUSTER_SECRET:?err}
- K3S_KUBECONFIG_OUTPUT=/host/kubeconfig.yaml
- K3S_CLUSTER_SECRET=${K3S_CLUSTER_SECRET:-replaceme}
- K3S_KUBECONFIG_OUTPUT=/host/build/kubeconfig.yaml
- K3S_KUBECONFIG_MODE=666
volumes:
- k3s_data:/var/lib/rancher/k3s
@ -30,7 +30,7 @@ services:
privileged: true
environment:
- K3S_URL=https://server:6443
- K3S_CLUSTER_SECRET=${K3S_CLUSTER_SECRET:?err}
- K3S_CLUSTER_SECRET=${K3S_CLUSTER_SECRET:-replaceme}
volumes:
k3s_data: