Skip to content
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

tweak: add CMD to updater and admission-controller Dockerfile Entrypoint #2175

Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
tweak: add CMD arg to Dockerfiles
exdx committed Jul 9, 2019
commit ce85be573deea0201018b3e46f3caca70f37c427
3 changes: 2 additions & 1 deletion vertical-pod-autoscaler/pkg/admission-controller/Dockerfile
Original file line number Diff line number Diff line change
@@ -17,4 +17,5 @@ MAINTAINER Tomasz Kulczynski "tkulczynski@google.com"

ADD admission-controller admission-controller

ENTRYPOINT ./admission-controller --v=4 --stderrthreshold=info
ENTRYPOINT ["./admission-controller"]
CMD ["--v=4 --stderrthreshold=info"]
4 changes: 2 additions & 2 deletions vertical-pod-autoscaler/pkg/updater/Dockerfile
Original file line number Diff line number Diff line change
@@ -12,10 +12,10 @@
# See the License for the specific language governing permissions and
# limitations under the License.


FROM k8s.gcr.io/debian-base-amd64:1.0.0
MAINTAINER Marcin Wielgus "mwielgus@google.com"

ADD updater updater

ENTRYPOINT ./updater --v=4 --stderrthreshold=info
ENTRYPOINT ["./updater"]
CMD ["--v=4 --stderrthreshold=info"]