Skip to content

Commit

Permalink
Add namespace arg to hypershift-aws-template jobs
Browse files Browse the repository at this point in the history
Increased the nodePoolReplicas maximum for more control with a "bring
your own credentials" model.

Signed-off-by: Alex Misstear <[email protected]>
  • Loading branch information
amisstea committed May 3, 2024
1 parent 20bfaa9 commit c464548
Show file tree
Hide file tree
Showing 4 changed files with 6 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.1
version: 0.0.2

# 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 @@ -22,6 +22,8 @@ spec:
- {{ .Release.Name }}
- --infra-id
- {{ .Release.Name | trunc -12 }}
- --namespace
- {{ .Release.Namespace }}
- --secret-creds
- {{ .Values.secret }}
- --region
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ spec:
- {{ .Release.Name }}
- --infra-id
- {{ .Release.Name | trunc -12 }}
- --namespace
- {{ .Release.Namespace }}
- --secret-creds
- {{ .Values.secret }}
- --region
Expand Down
2 changes: 1 addition & 1 deletion charts/hypershift-aws-template/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"nodePoolReplicas": {
"type": "integer",
"description": "Size of the worker node pool",
"maximum": 3,
"maximum": 10,
"minimum": 2
},
"region": {
Expand Down

0 comments on commit c464548

Please sign in to comment.