Skip to content

Commit

Permalink
devcontainers: make things a bit more usable by default
Browse files Browse the repository at this point in the history
  • Loading branch information
endocrimes committed Aug 17, 2024
1 parent 728a2b8 commit 78285da
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 2 deletions.
25 changes: 24 additions & 1 deletion .devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,28 @@
"helm": "latest",
"minikube": "none"
}
}
},
"containerEnv": {
"E2E_USE_NATIVE_SNAPSHOTTER": "true"
},
"customizations": {
"vscode": {
"settings": {
"go.toolsManagement.checkForUpdates": "local",
"go.useLanguageServer": true,
"go.gopath": "/go"
},
"extensions": [
"golang.Go",
"DavidAnson.vscode-markdownlint"
]
}
},
// Allow Debuggers to work
"capAdd": [
"SYS_PTRACE"
],
"securityOpt": [
"seccomp=unconfined"
]
}
8 changes: 7 additions & 1 deletion config/manager/kustomization.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,8 @@
resources:
- manager.yaml
- manager.yaml
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
images:
- name: ghcr.io/spinkube/spin-operator
newName: ghcr.io/spinkube/spin-operator
newTag: dev

0 comments on commit 78285da

Please sign in to comment.