-
Notifications
You must be signed in to change notification settings - Fork 200
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
Support config for container image #285
Support config for container image #285
Conversation
Signed-off-by: Lan Liang <[email protected]>
f9e1eb1
to
464af86
Compare
we don't have the image |
How about specifying the |
kindly ping @liangyuanpeng |
Make sense, let me update it. |
…ig_keepalivedImage
Signed-off-by: Lan Liang <[email protected]>
Signed-off-by: Lan Liang <[email protected]>
Signed-off-by: Lan Liang <[email protected]>
Signed-off-by: Lan Liang <[email protected]>
Thank you very much for your contribution. I was wondering if we could use a configmap to specify all the custom images used by openelb. For example: configmap |
Signed-off-by: renyunkang <[email protected]>
…epalivedImage # Conflicts: # VERSION # cmd/manager/app/manager.go
pkg/speaker/vip/keepalived.go
Outdated
if err != nil { | ||
return constant.OpenELBDefaultKeepAliveImage | ||
} | ||
return cm.Data[constant.OpenELBKeepAliveImage] |
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.
cm.Data[constant.OpenELBKeepAliveImage]
Is it possible for null pointer to occur here?
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.
oh, may be empty
Signed-off-by: renyunkang <[email protected]>
Thanks! /lgtm |
LGTM label has been added. Git tree hash: 7b5ae8bc050cd563e287bdb32c7638196971d80e
|
1 similar comment
LGTM label has been added. Git tree hash: 7b5ae8bc050cd563e287bdb32c7638196971d80e
|
Thanks for your work. /lgtm
Some Suggest ,Only configmap or some config file should be enought. |
@liangyuanpeng: you cannot LGTM your own PR. In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
1 similar comment
@liangyuanpeng: you cannot LGTM your own PR. In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
/lgtm |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: liangyuanpeng, renyunkang The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
1 similar comment
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: liangyuanpeng, renyunkang The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
Description
Add param of keepalived-image for openelb manager
You can specify all images used by openelb through configmap. Name must be
openelb-images
.Related links:
#283 #214