-
Notifications
You must be signed in to change notification settings - Fork 12
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
custom platform implementation #293
custom platform implementation #293
Conversation
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.
Thanks @gregorzavodnik!
One thing to note, is that for a custom platform, at least as a V1, I recommend not adding any CLI setup.
return { | ||
id, | ||
name, | ||
custom: "type", |
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.
should be the other way around (type: "custom")
src/model/PlatformConfig.ts
Outdated
aadTenantId: string; | ||
subscriptionId: string; |
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.
aadTenantId
and subscriptionId
are Azure references, and should be adapted
src/model/schemas/schema.json
Outdated
"collie": { | ||
"$ref": "#/definitions/CollieConfig" | ||
}, | ||
"azure": {} |
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.
"azure" does not belong under custom
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.
lgtm! 🚀
Allows to select a custom platform when creating a new foundation