mirror of
https://github.com/FAUSheppy/no-secrets-athq-ansible
synced 2025-12-07 16:11:34 +01:00
add: code-server (VS-Code)
This commit is contained in:
@@ -6,6 +6,7 @@ ldap_server: 192.168.122.112
|
|||||||
nsca_password: HISTORY_PURGED_SECRET
|
nsca_password: HISTORY_PURGED_SECRET
|
||||||
RSYSLOG_SERVER: internal.monitoring.atlantishq.de
|
RSYSLOG_SERVER: internal.monitoring.atlantishq.de
|
||||||
influxdb_telegraf_password: HISTORY_PURGED_SECRET
|
influxdb_telegraf_password: HISTORY_PURGED_SECRET
|
||||||
|
code_server_password: HISTORY_PURGED_SECRET
|
||||||
|
|
||||||
icinga_api_user: "mobile"
|
icinga_api_user: "mobile"
|
||||||
icinga_api_pass: "HISTORY_PURGED_SECRET"
|
icinga_api_pass: "HISTORY_PURGED_SECRET"
|
||||||
|
|||||||
@@ -58,6 +58,7 @@
|
|||||||
- money-balancer
|
- money-balancer
|
||||||
- atlantis-web-check
|
- atlantis-web-check
|
||||||
- ntfy
|
- ntfy
|
||||||
|
- code-server
|
||||||
|
|
||||||
- name: Copy AtlantisHub config
|
- name: Copy AtlantisHub config
|
||||||
copy:
|
copy:
|
||||||
@@ -108,6 +109,7 @@
|
|||||||
- atlantis-web-check
|
- atlantis-web-check
|
||||||
- ntfy
|
- ntfy
|
||||||
- ferchau-wscad
|
- ferchau-wscad
|
||||||
|
- code-server
|
||||||
|
|
||||||
- name: Copy compose templates
|
- name: Copy compose templates
|
||||||
template:
|
template:
|
||||||
@@ -132,6 +134,7 @@
|
|||||||
- atlantis-web-check
|
- atlantis-web-check
|
||||||
- ntfy
|
- ntfy
|
||||||
- ferchau-wscad
|
- ferchau-wscad
|
||||||
|
- code-server
|
||||||
|
|
||||||
- name: Log into private registry
|
- name: Log into private registry
|
||||||
docker_login:
|
docker_login:
|
||||||
@@ -164,6 +167,7 @@
|
|||||||
- atlantis-web-check
|
- atlantis-web-check
|
||||||
- ntfy
|
- ntfy
|
||||||
- ferchau-wscad
|
- ferchau-wscad
|
||||||
|
- code-server
|
||||||
|
|
||||||
- name: OAuth2Proxy directories
|
- name: OAuth2Proxy directories
|
||||||
file:
|
file:
|
||||||
|
|||||||
12
roles/docker-deployments/templates/code-server.yaml
Normal file
12
roles/docker-deployments/templates/code-server.yaml
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
services:
|
||||||
|
code:
|
||||||
|
image: codercom/code-server
|
||||||
|
volumes:
|
||||||
|
- /data/code-server/projects/:/home/coder/project/
|
||||||
|
- /data/code-server/data:/data
|
||||||
|
environment:
|
||||||
|
- PASSWORD={{ code_server_password }}
|
||||||
|
ports:
|
||||||
|
- 5020:8080
|
||||||
|
command: code-server --auth password
|
||||||
|
restart: always
|
||||||
Reference in New Issue
Block a user