-
Notifications
You must be signed in to change notification settings - Fork 22
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
Provide KIM integration for freemium #983
Conversation
Skipping CI for Draft Pull Request. |
Add one of following labels |
// get plan specific values (like zones, default machine type etc. | ||
values, err := s.providerValues(&operation) | ||
if err != nil { | ||
return err | ||
} | ||
runtime.ObjectMeta.Name = runtimeName | ||
runtime.ObjectMeta.Namespace = kymaNamespace | ||
runtime.ObjectMeta.Labels = s.createLabelsForRuntime(operation, kymaName, values.Region) |
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.
sometimes region is not provided in provisioning parameters,
} | ||
freemiumProvider = *operation.ProvisioningParameters.Parameters.Provider | ||
switch freemiumProvider { | ||
switch operation.ProvisioningParameters.PlatformProvider { |
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.
provider comes from the kind of a BTP account, not a parameter set by a customer
/test all |
Description
Changes proposed in this pull request:
Related issue(s)
#791
#905