-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #894 from suxess-it/fix/demo
Fix/demo
- Loading branch information
Showing
13 changed files
with
336 additions
and
56 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
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
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
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
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
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,44 @@ | ||
cloudnative-pg: | ||
replicaCount: 2 | ||
monitoring: | ||
podMonitorEnabled: true | ||
commonAnnotations: | ||
argocd.argoproj.io/sync-wave: "-2" | ||
## pgadmin for demopurposes | ||
pgadmin4: | ||
ingress: | ||
enabled: true | ||
ingressClassName: nginx | ||
annotations: | ||
external-dns.alpha.kubernetes.io/ttl: "60" | ||
cert-manager.io/cluster-issuer: letsencrypt-prod | ||
hosts: | ||
- host: pgadmin.demo.kubrix.cloud | ||
paths: | ||
- path: / | ||
pathType: Prefix | ||
tls: | ||
- secretName: pgadmin-server-tls | ||
hosts: | ||
- pgadmin.demo.kubrix.cloud | ||
extraConfigmapMounts: | ||
- name: configmap | ||
configMap: pgadminconfiglocal | ||
mountPath: /pgadmin4/config_local.py | ||
subPath: config_local.py | ||
readOnly: true | ||
envVarsFromSecrets: | ||
- pgadmin-secret | ||
serverDefinitions: | ||
enabled: true | ||
servers: | ||
backstagePG: | ||
Name: "backstagePG" | ||
Group: "kubriX" | ||
Port: 5432 | ||
Username: backstage | ||
Host: sx-backstage-cluster-rw.backstage.svc.cluster.local | ||
MaintenanceDB: "postgres" | ||
existingSecret: pgadmin-secret | ||
env: | ||
email: pgadmin4@kubrix.io |
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
15 changes: 15 additions & 0 deletions
15
platform-apps/charts/kubevirt-manager/values-demo-metalstack.yaml
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,15 @@ | ||
cert: | ||
enabled: true | ||
|
||
gardenercert: | ||
enabled: false | ||
|
||
deployment: | ||
version: 1.4.1 | ||
tls: | ||
name: kubevirt-manager-server-tls | ||
ingress: | ||
host: kubevirt-manager.demo.kubrix.cloud | ||
service: | ||
name: kubevirt-manager | ||
port: 8080 |
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,20 @@ | ||
kubevirt: | ||
version: v1.2.0 | ||
cdi: | ||
version: v1.59.0 | ||
datasources: | ||
enabled: true | ||
clientnamespaces: | ||
- prod-demo-kubevirt | ||
- test-demo-kubevirt | ||
- qa-demo-kubevirt | ||
sources: | ||
- name: ubuntu-jammy-server | ||
url: http://cloud-images.ubuntu.com/jammy/current/jammy-server-cloudimg-amd64.img | ||
storage: 3G | ||
# description for backstage Software Catalog | ||
description: ubuntu 22.02 Base Image | ||
- name: fedora-cloud-base | ||
url: https://download.fedoraproject.org/pub/fedora/linux/releases/40/Cloud/x86_64/images/Fedora-Cloud-Base-Generic.x86_64-40-1.14.qcow2 | ||
storage: 10G | ||
description: fedoa cloud v40.1.14 Base Image |
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,57 @@ | ||
minio: | ||
enabled: true | ||
replicas: 1 | ||
mode: standalone | ||
persistence: | ||
size: 5Gi | ||
resources: | ||
requests: | ||
memory: 2Gi | ||
buckets: | ||
- name: velero | ||
policy: public | ||
purge: false | ||
metrics: | ||
serviceMonitor: | ||
enabled: true | ||
includeNode: true | ||
existingSecret: minio-admin-secret | ||
users: | ||
# - accessKey: minio | ||
# secretKey: minio123 | ||
# policy: consoleAdmin | ||
- accessKey: minio | ||
existingSecret: minio-admin-secret | ||
existingSecretKey: secretKey | ||
policy: consoleAdmin | ||
tls: | ||
enabled: true | ||
certSecret: "minio-server-tls" | ||
publicCrt: tls.crt | ||
privateKey: tls.key | ||
consoleIngress: | ||
enabled: true | ||
ingressClassName: nginx | ||
annotations: | ||
external-dns.alpha.kubernetes.io/ttl: "60" | ||
cert-manager.io/cluster-issuer: letsencrypt-prod | ||
nginx.ingress.kubernetes.io/backend-protocol: "HTTPS" | ||
path: / | ||
hosts: | ||
- minio-console.demo.kubrix.cloud | ||
tls: | ||
- secretName: minio-console-tls | ||
hosts: | ||
- minio-console.demo.kubrix.cloud | ||
ingress: | ||
enabled: true | ||
ingressClassName: ~ | ||
annotations: | ||
nginx.ingress.kubernetes.io/backend-protocol: "HTTPS" | ||
path: / | ||
hosts: | ||
- minio.demo.kubrix.cloud | ||
tls: | ||
- secretName: minio-server-tls | ||
hosts: | ||
- minio.demo.kubrix.cloud |
33 changes: 33 additions & 0 deletions
33
platform-apps/charts/velero-ui/values-demo-metalstack.yaml
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,33 @@ | ||
vui: | ||
global: | ||
veleroNamespace: velero | ||
kubernetesClusterDomain: cluster.local | ||
clusterName: "kubriX--demo" | ||
|
||
apiConfig: | ||
apiEnableDocumentation: "1" | ||
k8SInClusterMode: "True" | ||
origins1: 'https://velero-ui.demo.kubrix.cloud' | ||
veleroCliVersion: v1.14.0 | ||
existingSecret: velero-ui-credential | ||
|
||
uiIngress: | ||
enabled: true | ||
host: velero-ui.demo.kubrix.cloud | ||
ingressClassName: nginx | ||
metadata: | ||
annotations: | ||
external-dns.alpha.kubernetes.io/ttl: "60" | ||
cert-manager.io/cluster-issuer: letsencrypt-prod | ||
spec: | ||
tls: | ||
- secretName: velero-ui-tls | ||
hosts: | ||
- velero-ui.demo.kubrix.cloud | ||
|
||
uiNp: # NodePort | ||
enabled: false | ||
ip: "" | ||
apiPort: "30001" | ||
uiPort: "30002" | ||
|
Oops, something went wrong.