-
Notifications
You must be signed in to change notification settings - Fork 72
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
generate a helm chart for hypershift
Signed-off-by: Gerd Oberlechner <goberlec@redhat.com>
- Loading branch information
Showing
103 changed files
with
67,138 additions
and
67,080 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
# HyperShift Operator | ||
|
||
To promote HyperShift Operator, increment the `HO_IMAGE` variable in the Makefile, then run `make prepare-ho-manifests` to generate the corresponding manifests for that image. | ||
To promote HyperShift Operator, increment the `HO_IMAGE` variable in the Makefile, then run `make build-helm-chart` to generate the corresponding manifests for that image. |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
6 changes: 0 additions & 6 deletions
6
hypershiftoperator/deploy/base/serviceaccount-external-dns.yaml
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
apiVersion: v2 | ||
description: A Helm chart to install the Hypershift Operator and deps for ARO | ||
name: aor-hcp-hypershift-operator | ||
type: application | ||
version: 0.1.0 |
5 changes: 5 additions & 0 deletions
5
hypershiftoperator/deploy/helm/charts/exgernal-dns/Chart.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
apiVersion: v2 | ||
description: A Helm chart for External DNS | ||
name: external-dns | ||
type: application | ||
version: 0.14.2 |
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 15 additions & 0 deletions
15
hypershiftoperator/deploy/helm/charts/exgernal-dns/templates/secret-external-dns-azure.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
apiVersion: v1 | ||
kind: Secret | ||
metadata: | ||
name: external-dns-azure | ||
namespace: '{{ .Release.Namespace }}' | ||
type: Opaque | ||
stringData: | ||
credentials: | | ||
{ | ||
"tenantId": "{{ .Values.credentials.tenantId }}", | ||
"subscriptionId": "{{ .Values.credentials.subscriptionId }}", | ||
"resourceGroup": "{{ .Values.credentials.resourceGroup }}", | ||
"useWorkloadIdentityExtension": true, | ||
"userAssignedIdentityID": "{{ .Values.credentials.userAssignedIdentityID }}" | ||
} |
8 changes: 8 additions & 0 deletions
8
...rshiftoperator/deploy/helm/charts/exgernal-dns/templates/serviceaccount-external-dns.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
apiVersion: v1 | ||
kind: ServiceAccount | ||
metadata: | ||
creationTimestamp: null | ||
name: external-dns | ||
namespace: '{{ .Release.Namespace }}' | ||
annotations: | ||
azure.workload.identity~1client-id: '{{ .Values.credentials.userAssignedIdentityID }}' |
8 changes: 8 additions & 0 deletions
8
hypershiftoperator/deploy/helm/charts/exgernal-dns/values.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
image: "" | ||
txtOwnerId: "" | ||
domain: "" | ||
credentials: | ||
tenantId: "" | ||
subscriptionId: "" | ||
resourceGroup: "" | ||
userAssignedIdentityID: "" |
6 changes: 6 additions & 0 deletions
6
hypershiftoperator/deploy/helm/charts/hypershift-operator/Chart.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
apiVersion: v2 | ||
appVersion: faaf4d1f01b8b22dc23e58e2269701030dacd197 | ||
description: A Helm chart for the HyperShift Operator | ||
name: hypershift-operator | ||
type: application | ||
version: 0.1.0 |
Oops, something went wrong.