Skip to content

Commit

Permalink
Merge pull request #1 from amisstea/main
Browse files Browse the repository at this point in the history
Make hypershift timeout configurable
  • Loading branch information
amisstea authored Aug 6, 2024
2 parents c464548 + 4c7130c commit b0f5bb6
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion charts/hypershift-aws-template/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.0.2
version: 0.0.3

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,5 +51,5 @@ spec:
- --annotations
- argocd.argoproj.io/sync-options=Prune=false,Delete=false
- --timeout
- 20m
- "{{ .Values.timeout }}"
- --wait
4 changes: 4 additions & 0 deletions charts/hypershift-aws-template/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,10 @@
"type": "string",
"description": "Service account used for the workload"
},
"timeout": {
"type": "string",
"description": "How long to wait for provisioning to complete (e.g. '20m')"
},
"version": {
"type": "string",
"description": "OpenShift version"
Expand Down
2 changes: 2 additions & 0 deletions charts/hypershift-aws-template/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,5 @@ region: us-east-1
secret: hypershift

serviceAccount: cluster-provisioner

timeout: 20m

0 comments on commit b0f5bb6

Please sign in to comment.