.
This commit is contained in:
@@ -368,12 +368,12 @@ data:
|
|||||||
# tag: "kanban"
|
# tag: "kanban"
|
||||||
# keywords: "kanban"
|
# keywords: "kanban"
|
||||||
# url: "https://kanban.apps.undercloud.dev"
|
# url: "https://kanban.apps.undercloud.dev"
|
||||||
- name: "Rallly"
|
- name: "Polly"
|
||||||
logo: "assets/logos/doodle.png"
|
logo: "assets/logos/doodle.png"
|
||||||
subtitle: "find Appointments"
|
subtitle: "find Appointments"
|
||||||
tag: "rallly"
|
tag: "polly"
|
||||||
keywords: "doodle rallly termine appointments"
|
keywords: "doodle polly termine appointments"
|
||||||
url: "https://rallly.apps.undercloud.dev"
|
url: "https://polly.apps.undercloud.dev"
|
||||||
- name: "Communication"
|
- name: "Communication"
|
||||||
icon: "fas fa-cloud"
|
icon: "fas fa-cloud"
|
||||||
items:
|
items:
|
||||||
|
|||||||
@@ -9,11 +9,12 @@ metadata:
|
|||||||
name: polly-secrets
|
name: polly-secrets
|
||||||
namespace: polly
|
namespace: polly
|
||||||
type: Opaque
|
type: Opaque
|
||||||
|
data:
|
||||||
|
admin-password: NElzVGhlTWluZEtpbGxlcg==
|
||||||
stringData:
|
stringData:
|
||||||
postgres-password: "change-this-db-password"
|
postgres-password: "change-this-db-password"
|
||||||
database-url: "postgresql://polly:change-this-db-password@postgres:5432/polly"
|
database-url: "postgresql://polly:change-this-db-password@postgres:5432/polly"
|
||||||
session-secret: "change-this-to-a-random-secret-with-at-least-32-characters"
|
session-secret: "change-this-to-a-random-secret-with-at-least-32-characters"
|
||||||
admin-password: "change-this-admin-password"
|
|
||||||
---
|
---
|
||||||
apiVersion: v1
|
apiVersion: v1
|
||||||
kind: PersistentVolumeClaim
|
kind: PersistentVolumeClaim
|
||||||
@@ -141,15 +142,15 @@ spec:
|
|||||||
value: "https://polly.apps.undercloud.dev"
|
value: "https://polly.apps.undercloud.dev"
|
||||||
- name: BASE_URL
|
- name: BASE_URL
|
||||||
value: "https://polly.apps.undercloud.dev"
|
value: "https://polly.apps.undercloud.dev"
|
||||||
#- name: ADMIN_USERNAME
|
- name: ADMIN_USERNAME
|
||||||
# value: "admin"
|
value: "admin"
|
||||||
#- name: ADMIN_PASSWORD
|
- name: ADMIN_PASSWORD
|
||||||
# valueFrom:
|
valueFrom:
|
||||||
# secretKeyRef:
|
secretKeyRef:
|
||||||
# name: polly-secrets
|
name: polly-secrets
|
||||||
# key: admin-password
|
key: admin-password
|
||||||
#- name: ADMIN_EMAIL
|
- name: ADMIN_EMAIL
|
||||||
# value: "admin@undercloud.dev"
|
value: "admin@undercloud.dev"
|
||||||
- name: SEED_DEMO_DATA
|
- name: SEED_DEMO_DATA
|
||||||
value: "true"
|
value: "true"
|
||||||
ports:
|
ports:
|
||||||
|
|||||||
@@ -60,14 +60,29 @@ data:
|
|||||||
"TabColor": "112233",
|
"TabColor": "112233",
|
||||||
"Meta": {
|
"Meta": {
|
||||||
"User": "core",
|
"User": "core",
|
||||||
"Authentication": "Password",
|
"Authentication": "Private Key",
|
||||||
"Password": ""
|
"Private Key": "file:///config/id_ed25519"
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"OnlyAllowPresetRemotes": false
|
"OnlyAllowPresetRemotes": false
|
||||||
}
|
}
|
||||||
|
---
|
||||||
|
apiVersion: v1
|
||||||
|
kind: ConfigMap
|
||||||
|
metadata:
|
||||||
|
name: ssh-key
|
||||||
|
namespace: sshwifty
|
||||||
|
data:
|
||||||
|
id_ed25519: |
|
||||||
|
-----BEGIN OPENSSH PRIVATE KEY-----
|
||||||
|
b3BlbnNzaC1rZXktdjEAAAAABG5vbmUAAAAEbm9uZQAAAAAAAAABAAAAMwAAAAtzc2gtZW
|
||||||
|
QyNTUxOQAAACD5sHjDsr8ZemeVMzCiySNb2vsPCJU5dLQBkJIxnm4h2wAAAKBLYJ18S2Cd
|
||||||
|
fAAAAAtzc2gtZWQyNTUxOQAAACD5sHjDsr8ZemeVMzCiySNb2vsPCJU5dLQBkJIxnm4h2w
|
||||||
|
AAAECKxXExaNu1eTO7kcxGJdl+CV50jnVAKCY4AySb1tYsGfmweMOyvxl6Z5UzMKLJI1va
|
||||||
|
+w8IlTl0tAGQkjGebiHbAAAAHHNlYmFzdGlhbkB1bmRlcmNsb3VkLWZsYXRjYXIB
|
||||||
|
-----END OPENSSH PRIVATE KEY-----
|
||||||
|
|
||||||
---
|
---
|
||||||
apiVersion: apps/v1
|
apiVersion: apps/v1
|
||||||
@@ -103,10 +118,16 @@ spec:
|
|||||||
- name: sshwifty-config
|
- name: sshwifty-config
|
||||||
mountPath: "/config"
|
mountPath: "/config"
|
||||||
readOnly: true
|
readOnly: true
|
||||||
|
- name: ssh-key
|
||||||
|
mountPath: "/config"
|
||||||
|
readOnly: true
|
||||||
volumes:
|
volumes:
|
||||||
- name: sshwifty-config
|
- name: sshwifty-config
|
||||||
configMap:
|
configMap:
|
||||||
name: sshwifty-config
|
name: sshwifty-config
|
||||||
|
- name: ssh-key
|
||||||
|
configMap:
|
||||||
|
name: ssh-key
|
||||||
---
|
---
|
||||||
apiVersion: v1
|
apiVersion: v1
|
||||||
kind: Service
|
kind: Service
|
||||||
|
|||||||
Reference in New Issue
Block a user