Skip to content

Commit

Permalink
switched from minikube to kind.
Browse files Browse the repository at this point in the history
  • Loading branch information
TimothyStiles committed Aug 18, 2023
1 parent d9a93b7 commit af9db82
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
6 changes: 1 addition & 5 deletions .devcontainer/dev/templates/configmap.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
apiVersion: v1
kind: ConfigMap
metadata:
name: {{ .Release.Name }}-configmap
data:
myvalue: "Hello World"
drink: {{ .Values.favorite.drink }}
food: {{ .Values.favorite.food }}
name: {{ .Release.Name }}-configmap
5 changes: 4 additions & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@
"version": "latest",
"golangciLintVersion": "latest"
},
"ghcr.io/mpriscella/features/kind:1": {
"version": "latest"
}
},

"extensions": ["golang.go","premparihar.gotestexplorer","github.vscode-pull-request-github","eamodio.gitlens"],
Expand All @@ -30,7 +33,7 @@
// "postCreateCommand": "kubectl version",

// Use 'postStartCommand' to run commands after the container is created like starting minikube.
"postStartCommand": "minikube start && helm install dev .devcontainer/dev",
"postStartCommand": "kind create cluster && helm install dev .devcontainer/dev",
// "postStartCommand": "nohup bash -c 'minikube start &' > minikube.log 2>&1 && helm install dev .devcontainer/dev",

// Configure tool-specific properties.
Expand Down

0 comments on commit af9db82

Please sign in to comment.