-
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
Add Support for additional deployment configuration #18
Comments
Hey, @mikebaum , |
@mfamador Awesome, in terms of the design would you be okay with adding the properties to the root schema? Something like this:
and then just setting them in the appropriate place in the |
maybe we can add them below |
Sounds good to me. Some of these properties will come from varying levels of the |
Created PR #19 to get the ball rolling on adding additional properties to the pipeline API. I hesitated to put this new property into a |
Thanks for starting this project. I'm currently evaluating using the operator to deploy pipelines in my organization. At this point I understand that it alpha, but I was wondering if you have any plans to add additional configuration options to the
Pipeline
resource.I can see a clear need for the following configurable properties:
It would seem simple enough to add these and more if necessary. In fact I have already modified the controller to add:
EnvFrom
,Resources
,Labels
, andAnnotations
which correspond to the available configuration in theDeploymentSpec
.I did this only to evaluate if we could use the operator and it was very straightforward to implement. I added these properties to the root of the schema, but that was just a quick and dirty approach since it meant not having to create a new type, but rather just update the Deployment that the operator creates with the additional configuration.
I would be willing to submit PRs to help in the development effort.
The text was updated successfully, but these errors were encountered: