-
Notifications
You must be signed in to change notification settings - Fork 95
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixing bmo version for clusterctl tests
Signed-off-by: adil ghaffar <[email protected]>
- Loading branch information
1 parent
5b20ad8
commit 2a96324
Showing
30 changed files
with
994 additions
and
215 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
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
18 changes: 18 additions & 0 deletions
18
test/e2e/data/bmo-deployment/components/basic-auth/credentials_patch.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,18 @@ | ||
apiVersion: apps/v1 | ||
kind: Deployment | ||
metadata: | ||
name: controller-manager | ||
namespace: system | ||
spec: | ||
template: | ||
spec: | ||
containers: | ||
- name: manager | ||
volumeMounts: | ||
- name: ironic-credentials | ||
mountPath: "/opt/metal3/auth/ironic" | ||
readOnly: true | ||
volumes: | ||
- name: ironic-credentials | ||
secret: | ||
secretName: ironic-credentials |
19 changes: 19 additions & 0 deletions
19
test/e2e/data/bmo-deployment/components/basic-auth/kustomization.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,19 @@ | ||
apiVersion: kustomize.config.k8s.io/v1alpha1 | ||
kind: Component | ||
|
||
# NOTE: This component requires a secret with the basic auth credentials! | ||
# How you create it is up to you. The required secrets is: | ||
# - ironic-credentials | ||
# | ||
# It should contain 2 fields: username and password. Example: | ||
# | ||
# apiVersion: v1 | ||
# kind: Secret | ||
# metadata: | ||
# name: ironic-credentials | ||
# data: | ||
# password: <base64-encoded-password> | ||
# username: <base64-encoded-username> | ||
|
||
patches: | ||
- path: credentials_patch.yaml |
8 changes: 8 additions & 0 deletions
8
test/e2e/data/bmo-deployment/components/tls/kustomization.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: kustomize.config.k8s.io/v1alpha1 | ||
kind: Component | ||
|
||
patches: | ||
- path: tls_ca_patch.yaml | ||
target: | ||
kind: Deployment | ||
name: controller-manager |
Oops, something went wrong.