-
Notifications
You must be signed in to change notification settings - Fork 105
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6e10bbf
commit 1e4e553
Showing
2 changed files
with
46 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
apiVersion: application.kubero.dev/v1alpha1 | ||
kind: KuberoApp | ||
metadata: | ||
name: code-server | ||
labels: | ||
manager: kubero | ||
spec: | ||
name: code-server | ||
deploymentstrategy: docker | ||
envVars: | ||
- name: TZ | ||
value: Etc/UTC | ||
- name: PUID | ||
value: "1000" | ||
- name: PGID | ||
value: "1000" | ||
- name: PASSWORD | ||
value: secret | ||
extraVolumes: | ||
- accessMode: ReadWriteOnce | ||
accessModes: | ||
- ReadWriteOnce | ||
emptyDir: false | ||
mountPath: /config | ||
name: code-server-config | ||
size: 1Gi | ||
storageClass: standard | ||
cronjobs: [] | ||
addons: [] | ||
web: | ||
replicaCount: 1 | ||
worker: | ||
replicaCount: 0 | ||
image: | ||
containerPort: 8080 | ||
pullPolicy: Always | ||
repository: lscr.io/linuxserver/code-server | ||
tag: latest |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
name: VS Code - Code Server | ||
description: 'Run VS Code on any machine anywhere and access it in the browser.' | ||
tags: | ||
- development | ||
source: https://github.com/coder/code-server | ||
website: https://coder.com | ||
screenshots: | ||
- https://github.com/coder/code-server/raw/main/docs/assets/screenshot-1.png |