Skip to content

Commit

Permalink
add: code-server
Browse files Browse the repository at this point in the history
  • Loading branch information
codekow committed Nov 1, 2024
1 parent 4be3635 commit ea8cfc0
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
apiVersion: kustomize.config.k8s.io/v1alpha1
kind: Component

patches:
- path: patch-deployment.yaml
target:
kind: Deployment
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: notebook
spec:
template:
spec:
containers:
- name: notebook
image: docker.io/kubeflownotebookswg/codeserver
volumeMounts:
- name: home
mountPath: /home/jovyan
subPath: data
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization

components:
- ../../components/code-server

resources:
- ../../base

0 comments on commit ea8cfc0

Please sign in to comment.