-
Notifications
You must be signed in to change notification settings - Fork 191
Add PowerVS as a new platform #2200
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 4 commits
17bd2d1
e8f0096
2188e8b
dd6fb0d
ce1442b
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 |
|---|---|---|
|
|
@@ -77,6 +77,10 @@ var generatedSchemaJSON = `{ | |
| "image", | ||
| "url" | ||
| ], | ||
| "optional": [ | ||
| "bucket", | ||
| "region" | ||
| ], | ||
| "properties": { | ||
| "image": { | ||
| "$id":"#/cloudartifact/image", | ||
|
|
@@ -87,6 +91,16 @@ var generatedSchemaJSON = `{ | |
| "$id":"#/cloudartifact/url", | ||
| "type":"string", | ||
| "title":"URL" | ||
| }, | ||
| "bucket": { | ||
| "$id":"#/cloudartifact/bucket", | ||
| "type":"string", | ||
| "title":"Bucket" | ||
| }, | ||
| "region": { | ||
| "$id":"#/cloudartifact/region", | ||
| "type":"string", | ||
| "title":"Region" | ||
| } | ||
| } | ||
| }, | ||
|
|
@@ -187,6 +201,7 @@ var generatedSchemaJSON = `{ | |
| "exoscale", | ||
| "gcp", | ||
| "ibmcloud", | ||
| "powervs", | ||
|
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. In the past we have discussed the naming of a platform at a community meeting. COSA usually has used the agreed upon name for Ignition and Afterburn (cc @bgilbert). Digging around the docs [1] I found references to [1] https://www.ibm.com/docs/en/powervc/1.4.0?topic=machine-installing-configuring-cloud-init
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. We've already discussed the platform in a community meeting. See coreos/fedora-coreos-tracker#817 for more.
Contributor
Author
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. yes. also with regards to Afterburn there will be a new powervs provider added which will be similar to ibmcloud_classic.
Contributor
Author
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. |
||
| "images", | ||
| "koji", | ||
| "oscontainer", | ||
|
|
@@ -380,6 +395,7 @@ var generatedSchemaJSON = `{ | |
| "exoscale", | ||
| "gcp", | ||
| "ibmcloud", | ||
| "powervs", | ||
| "initramfs", | ||
| "iso", | ||
| "kernel", | ||
|
|
@@ -527,6 +543,12 @@ var generatedSchemaJSON = `{ | |
| "title":"IBM Cloud", | ||
| "$ref": "#/definitions/artifact" | ||
| }, | ||
| "powervs": { | ||
| "$id":"#/properties/images/properties/powervs", | ||
| "type":"object", | ||
| "title":"Power Virtual Server", | ||
| "$ref": "#/definitions/artifact" | ||
| }, | ||
| "gcp": { | ||
| "$id":"#/properties/images/properties/gcp", | ||
| "type":"object", | ||
|
|
@@ -797,6 +819,18 @@ var generatedSchemaJSON = `{ | |
| } | ||
| } | ||
| }, | ||
| "ibmcloud": { | ||
| "$id":"#/properties/ibmcloud", | ||
| "type":"object", | ||
| "title":"IBM Cloud", | ||
| "$ref": "#/definitions/cloudartifact" | ||
| }, | ||
| "powervs": { | ||
| "$id":"#/properties/powervs", | ||
| "type":"object", | ||
| "title":"Power Virtual Server", | ||
| "$ref": "#/definitions/cloudartifact" | ||
| }, | ||
| "release-payload": { | ||
| "$id":"#/properties/release-payload", | ||
| "type":"object", | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1 @@ | ||
| cmd-artifact-disk | ||
| cmd-ore-wrapper |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| cmd-ore-wrapper |
Uh oh!
There was an error while loading. Please reload this page.