-
Notifications
You must be signed in to change notification settings - Fork 2.3k
configs/openshift/installer: Add jobs for Azure testing #3877
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -315,6 +315,15 @@ azure-secrets: | |
| oc create secret generic codecov-token --from-literal=upload=${CODECOV_UPLOAD_TOKEN} -o yaml --dry-run | oc apply -n azure -f - | ||
| .PHONY: azure-secrets | ||
|
|
||
| azure4-secrets: | ||
| oc create secret generic cluster-secrets-azure4 \ | ||
| --from-file=cluster/test-deploy/azure4/osServicePrincipal.json \ | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This actually shouldn't be used, can you remove this section? ci-operator/populate-secrets-from-bitwarden is used instead. |
||
| --from-file=cluster/test-deploy/azure4/pull-secret \ | ||
| --from-file=cluster/test-deploy/azure4/ssh-privatekey \ | ||
| --from-file=cluster/test-deploy/azure4/ssh-publickey \ | ||
| -o yaml --dry-run | oc apply -n ocp -f - | ||
| .PHONY: azure4-secrets | ||
|
|
||
| metering: | ||
| $(MAKE) -C projects/metering | ||
| .PHONY: metering | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -54,6 +54,15 @@ currently exist: | |
| | `metrics-int.key` | Azure Geneva metrics authentication key | | ||
| | `system-docker-config.json` | Root/node/system level docker config.json file, currently holding access registry.redhat.io | | ||
|
|
||
| #### `cluster-secrets-azure4` | ||
|
|
||
| | Key | Description | | ||
| | ----------------------------------| ----------- | | ||
| | `osServicePrincipal.json` | Credentials for the Azure API. This is a json file that contains fields described in [upstream credentials doc](https://docs.microsoft.com/en-us/azure-stack/operator/azure-stack-create-service-principals#create-a-service-principal-using-a-client-secret). | | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @coverprice this would be the secret we need in bitwarden |
||
| | `pull-secret` | Credentials for pulling OpenShift images from Quay and for authenticating to telemetry. Retrieved from [try.openshift.com](https://try.openshift.com) under the ccoleman+openshift-ci-test@redhat.com account, and has the service account token from the `ocp` namespace added with `oc registry login --to=/tmp/pull-secret -z default -n ocp`.| | ||
| | `ssh-privatekey` | Private half of the SSH key, for connecting to Azure VMs. | | ||
| | `ssh-publickey` | Public half of the SSH key, for connecting to Azure VMs. | | ||
|
|
||
| #### `cluster-secrets-vsphere` | ||
|
|
||
| | Key | Description | | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| * | ||
| !.type | ||
| !.gitignore | ||
| !OWNERS | ||
| !secret_example |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| azure4 |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| { | ||
| "subscriptionId": "xxxxx", | ||
| "clientId": "xxxxx", | ||
| "clientSecret": "xxxxx", | ||
| "tenantId": "xxxxx" | ||
| } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please call this
azure-e2e-secretsfor now (azure4 is confusing). @jim-minter since azure is camping on the convention that the rest of the e2e suites run, I would prefer if you guys can over time migrate fromazure-secretstoazure-aro-secretsor similar. The base namespace belongs to the core CI platform.