Skip to content

Commit

Permalink
Merge pull request #158 from Jeremy4040/main
Browse files Browse the repository at this point in the history
Updated new values
  • Loading branch information
jebjohns authored Feb 11, 2024
2 parents 34dc70f + c7ab36e commit 2f77383
Show file tree
Hide file tree
Showing 12 changed files with 97 additions and 115 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,15 @@ certController:
requests:
cpu: 100m
memory: 100Mi


ClusterSecretStore:
create: false
vault:
server: http://vault.capten.svc.cluster.local:8200
path: secret
version: v2
auth:
secretname: vault-cluster-token
key: token
namespace: external-secrets
4 changes: 3 additions & 1 deletion apps/conf/values/kubviz-agent_template.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
nats:
auth:
token: "{{ .NATSToken }}"
secret:
name: "{{ .natsTokenSecretName }}"
key: "token"
git_bridge:
resources:
limits:
Expand Down
6 changes: 5 additions & 1 deletion apps/conf/values/kubviz-client_template.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
nats:
service:
type: NodePort
resources:
requests:
cpu: 100m
Expand All @@ -7,7 +9,9 @@ nats:
cpu: 200m
memory: 350Mi
auth:
token: "{{ .NATSToken }}"
secret:
name: "{{ .natsTokenSecretName }}"
key: "token"
resources:
requests:
cpu: 100m
Expand Down
2 changes: 1 addition & 1 deletion apps/conf/values/loki_template.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@ promtail:
memory: 1000Mi
config:
clients:
- url: http://{{ .Release.Name }}:3100/loki/api/v1/push
- url: http://loki:3100/loki/api/v1/push
external_labels:
cluster_name: capten-controlplane
16 changes: 0 additions & 16 deletions apps/conf/values/openebs-ndm_template.yaml

This file was deleted.

5 changes: 5 additions & 0 deletions apps/conf/values/postgresql_template.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
global:
postgresql:
auth:
username: "temporal"
database: "temporal"
15 changes: 15 additions & 0 deletions apps/conf/values/prometheus_template.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,23 @@ grafana:
folderAnnotation: grafana_folder
provider:
foldersFromFilesStructure: true
allowUiUpdates: true
datasources:
enabled: true
postgresql:
enabled: true
database:
type: postgres
host: prometheus-postgresql:5432
name: postgres
ssl_mode: disable
user: postgres
password: $__file{/etc/secrets/postgresql/postgres-password}
secretMount:
name: postgresql-mount
mountPath: /etc/secrets/postgresql
secretName: prometheus-postgresql
readOnly: true
prometheus:
ingress:
annotations:
Expand Down
34 changes: 34 additions & 0 deletions apps/conf/values/quality-trace_template.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
ingress:
annotations:
cert-manager.io/cluster-issuer: letsencrypt-prod-cluster
kubernetes.io/force-ssl-redirect: "true"
kubernetes.io/ssl-redirect: "true"
kubernetes.io/tls-acme: "true"
enabled: true
hosts:
- host: "quality-trace.{{.DomainName}}"
paths:
- path: /
pathType: ImplementationSpecific
tls:
- secretName: cert-quality-trace
hosts:
- "quality-trace.{{.DomainName}}"
telemetry:
exporters:
collector:
exporter:
collector:
endpoint: quality-trace-otel-collector.quality-trace.svc.cluster.local:4317
otelCollector:
ingressRoute:
enabled: true
host: "quality-trace-otelcollector.{{.DomainName}}"
service:
port: 4317
config:
exporters:
otlp/quality-trace:
endpoint: quality-trace.quality-trace.svc.cluster.local:4317
otlp/signoz:
endpoint: signoz-otel-collector.observability.svc.cluster.local:4317
4 changes: 0 additions & 4 deletions apps/conf/values/signoz_template.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,6 @@ otelCollector:
ingressRoute:
enabled: true
host: "otelcollector.{{.DomainName}}"
config:
exporters:
otlp/tracetest:
endpoint: http://tracetest-otel-collector.tracetest.svc.cluster.local:4317
otelCollectorMetrics:
resources:
requests:
Expand Down
31 changes: 14 additions & 17 deletions apps/conf/values/temporal_template.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,27 +8,24 @@ server:
config:
persistence:
default:
driver: "cassandra"
cassandra:
hosts: ["capten-cass-capten-cass-service"]
user: "capten-cass-superuser"
existingSecret: "capten-cass-superuser"

driver: "sql"
sql:
user: "capten-cass-superuser"
password: "capten-cass-superuser"
driver: "postgres"
host: postgresql
port: 5432
database: temporal
user: temporal
existingSecret: postgresql

visibility:
driver: "cassandra"
cassandra:
hosts: ["capten-cass-capten-cass-service"]
user: "capten-cass-superuser"
existingSecret: "capten-cass-superuser"

driver: "sql"
sql:
user: "capten-cass-superuser"
password: "capten-cass-superuser"

driver: "postgres"
host: postgresql
port: 5432
database: temporal_visibility
user: temporal
existingSecret: postgresql
autoscaling:
enabled: false
frontend:
Expand Down
70 changes: 0 additions & 70 deletions apps/conf/values/tracetest_template.yaml

This file was deleted.

13 changes: 8 additions & 5 deletions apps/conf/values/velero_template.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,17 +22,20 @@ configuration:
defaultVolumesToFsBackup: true
backupStorageLocation:
- name:
provider:
bucket:
provider: aws
bucket: velero-backup
config:
region:
region: west
volumeSnapshotLocation:
- name:
provider:
provider: aws
config:
region:
region: west
credentials:
secretContents:
cloud: |
[default]
aws_access_key_id=xxxyyy
aws_secret_access_key=yyyzzz
deployNodeAgent: true

0 comments on commit 2f77383

Please sign in to comment.