Skip to content

Commit

Permalink
fix: schema $ids
Browse files Browse the repository at this point in the history
  • Loading branch information
Julien Bouquillon committed Sep 4, 2023
1 parent c987d22 commit e0956f0
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
3 changes: 2 additions & 1 deletion charts/cnpg-cluster/values.schema.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"type": "object",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://raw.githubusercontent.com/socialgouv/helm-charts/v1/charts/cnpg-cluster/values.schema.json",
"required": [],
"properties": {
"instances": {
Expand Down
4 changes: 2 additions & 2 deletions charts/cnpg-cluster/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -127,9 +127,9 @@ poolers: {}
# max_client_conn: "1000"
# default_pool_size: "10"

# @param {number} [minSyncReplicas] Minimum of syncrhronous replicas. see https://cloudnative-pg.io/documentation/current/replication/#synchronous-replication
# @param {number} [minSyncReplicas] Minimum of synchrronous replicas. see https://cloudnative-pg.io/documentation/current/replication/#synchronous-replication
minSyncReplicas: 0
# @param {number} [maxSyncReplicas] Maximum of syncrhronous replicas. see https://cloudnative-pg.io/documentation/current/replication/#synchronous-replication
# @param {number} [maxSyncReplicas] Maximum of synchrronous replicas. see https://cloudnative-pg.io/documentation/current/replication/#synchronous-replication
maxSyncReplicas: 0

# @param {array} [pg_hba] pg_hba entries. See https://www.postgresql.org/docs/9.3/auth-pg-hba-conf.html
Expand Down
3 changes: 2 additions & 1 deletion charts/maildev/values.schema.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"type": "object",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://raw.githubusercontent.com/socialgouv/helm-charts/v1/charts/maildev/values.schema.json",
"required": [],
"properties": {
"namespace": {
Expand Down
3 changes: 2 additions & 1 deletion charts/pgweb/values.schema.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"type": "object",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://raw.githubusercontent.com/socialgouv/helm-charts/v1/charts/pgweb/values.schema.json",
"required": [],
"properties": {
"replicaCount": {
Expand Down

0 comments on commit e0956f0

Please sign in to comment.