Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Julien Bouquillon committed Aug 29, 2023
1 parent 4028c6b commit 95b3271
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 8 deletions.
24 changes: 18 additions & 6 deletions .github/e2e/values1.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@
],
"properties": {
"replicaCount": {
"type": "number",
"type": [
"number"
],
"title": "- number of replicas in the pgweb deployment",
"default": "1"
},
Expand Down Expand Up @@ -92,16 +94,22 @@
],
"properties": {
"create": {
"type": "boolean",
"type": [
"boolean"
],
"title": "-- Specifies whether a service account should be created",
"default": "false"
},
"annotations": {
"type": "any",
"type": [
"any"
],
"description": "Annotations to add to the service account"
},
"name": {
"type": "any",
"type": [
"any"
],
"description": "The name of the service account to use.\nIf not set and create is true, a name is generated using the fullname template",
"default": ""
}
Expand All @@ -117,7 +125,9 @@
"type": "string"
},
"resources": {
"type": "any",
"type": [
"any"
],
"description": "custom resources"
},
"autoscaling": {
Expand All @@ -128,7 +138,9 @@
],
"properties": {
"enabled": {
"type": "any",
"type": [
"any"
],
"description": "Horizontal Pod autoscaler",
"default": "false"
},
Expand Down
8 changes: 6 additions & 2 deletions .github/e2e/values2.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,15 @@
],
"properties": {
"host": {
"type": "string",
"type": [
"string"
],
"title": "SMTP hostname"
},
"port": {
"type": "number",
"type": [
"number"
],
"title": "SMTP hostname",
"default": "587"
}
Expand Down

0 comments on commit 95b3271

Please sign in to comment.