Skip to content

Commit c8cf5df

Browse files
committed
add placeholder files
1 parent 407fb58 commit c8cf5df

File tree

3 files changed

+10
-6
lines changed

3 files changed

+10
-6
lines changed

.gitignore

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,4 +42,8 @@ taco/data/
4242

4343
# Helm chart archives (generated by helm dependency update)
4444
**/charts/*.tgz
45-
**/Chart.lock
45+
**/Chart.lock
46+
47+
# Helm values with actual infrastructure config (team-specific)
48+
helm-charts/opentaco/values-production.yaml
49+
helm-charts/opentaco/values-test.yaml

helm-charts/opentaco/values-production.yaml renamed to helm-charts/opentaco/values-production.yaml.example

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Copy this file and customize for your environment
33

44
global:
5-
imageRegistry: us-central1-docker.pkg.dev/prod-415611/opentaco
5+
imageRegistry: us-central1-docker.pkg.dev/YOUR-PROJECT-ID/opentaco
66
imagePullPolicy: IfNotPresent
77

88
# ============================================================================
@@ -13,7 +13,7 @@ postgresql:
1313

1414
cloudSql:
1515
enabled: true
16-
instanceConnectionName: "prod-415611:us-central1:opentaco-postgres"
16+
instanceConnectionName: "YOUR-PROJECT-ID:YOUR-REGION:YOUR-INSTANCE"
1717
credentialsSecret: "cloudsql-credentials"
1818
serviceAccount: "cloudsql-sa"
1919

helm-charts/opentaco/values-test.yaml renamed to helm-charts/opentaco/values-test.yaml.example

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# Global Configuration
66
# ============================================================================
77
global:
8-
imageRegistry: us-central1-docker.pkg.dev/prod-415611/opentaco
8+
imageRegistry: us-central1-docker.pkg.dev/YOUR-PROJECT-ID/opentaco
99
imagePullPolicy: IfNotPresent
1010
imagePullSecrets:
1111
- name: gcr-json-key
@@ -18,7 +18,7 @@ postgresql:
1818

1919
cloudSql:
2020
enabled: false # Only statesman uses Cloud SQL, configured per-service below
21-
instanceConnectionName: "prod-415611:us-central1:taco-postgres"
21+
instanceConnectionName: "YOUR-PROJECT-ID:YOUR-REGION:YOUR-INSTANCE"
2222
credentialsSecret: "cloudsql-credentials"
2323
serviceAccount: "cloudsql-sa"
2424

@@ -46,7 +46,7 @@ statesman:
4646
existingSecretName: "statesman-secrets"
4747
cloudSql:
4848
enabled: true # Only statesman uses Cloud SQL
49-
instanceConnectionName: "prod-415611:us-central1:taco-postgres"
49+
instanceConnectionName: "YOUR-PROJECT-ID:YOUR-REGION:YOUR-INSTANCE"
5050
credentialsSecret: "cloudsql-credentials"
5151
storage:
5252
type: "s3"

0 commit comments

Comments
 (0)