-
Notifications
You must be signed in to change notification settings - Fork 3
feat: devenv #292
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
feat: devenv #292
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -320,10 +320,11 @@ func createDeployment(ctx Context, stack *v1beta1.Stack, b *v1beta1.Benthos) err | |
| Annotations: podAnnotations, | ||
| }, | ||
| Spec: corev1.PodSpec{ | ||
| InitContainers: b.Spec.InitContainers, | ||
| ImagePullSecrets: append(benthosImage.PullSecrets, b.Spec.ImagePullSecrets...), | ||
|
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. What happen if both are fullfilled ?
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. From what I have understood of the doc, each secret will be tested for each image |
||
| InitContainers: b.Spec.InitContainers, | ||
|
Comment on lines
+323
to
+324
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. Can we use the same strategy as other container ?
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. Sorry, I have not understood that point |
||
| Containers: []corev1.Container{{ | ||
| Name: "benthos", | ||
| Image: benthosImage, | ||
| Image: benthosImage.GetFullImageName(), | ||
| Env: env, | ||
| Command: cmd, | ||
| Ports: []corev1.ContainerPort{{ | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.