Skip to content

Commit

Permalink
Update the values schema (#20)
Browse files Browse the repository at this point in the history
**Description** <Describe what changed.>
This PR updates the schema for the values.yaml.

**Testing** <Describe how you tested the change.>
Verified the accuracy of the updated schema.

**Documentation** <Describe any documentation that was added.>
N/A
  • Loading branch information
gramidt committed Aug 23, 2023
1 parent 2f61615 commit 557b2f2
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 1 deletion.
2 changes: 1 addition & 1 deletion charts/orchestrator/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ type: application
# This is the chart version. This version number should be incremented each time we
# make changes to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.1.7
version: 0.1.8

# This is the version number of the application being deployed. This version number
# should be incremented each time we make changes to the application. Versions are
Expand Down
41 changes: 41 additions & 0 deletions charts/orchestrator/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -274,6 +274,47 @@
}
}
}
},
"livenessProbe": {
"type": "object",
"properties": {
"httpGet": {
"type": "object",
"properties": {
"path": {
"type": "string"
},
"port": {
"type": "string"
}
}
},
"initialDelaySeconds": {
"type": "integer"
},
"periodSeconds": {
"type": "integer"
}
}
},
"readinessProbe": {
"type": "object",
"properties": {
"httpGet": {
"type": "object",
"properties": {
"path": {
"type": "string"
},
"port": {
"type": "string"
}
}
},
"initialDelaySeconds": {
"type": "integer"
}
}
}
}
},
Expand Down

0 comments on commit 557b2f2

Please sign in to comment.