Skip to content

Commit

Permalink
Merge pull request #2175 from Denton24646/tweak/update-Dockerfile-CMD…
Browse files Browse the repository at this point in the history
…-updater-admission-controller

tweak: add CMD to updater and admission-controller Dockerfile Entrypoint
  • Loading branch information
k8s-ci-robot authored Jul 11, 2019
2 parents ae8e98e + 9e697e8 commit e8a5940
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion vertical-pod-autoscaler/pkg/admission-controller/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,5 @@ MAINTAINER Tomasz Kulczynski "[email protected]"

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
Expand Up @@ -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 "[email protected]"

ADD updater updater

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

0 comments on commit e8a5940

Please sign in to comment.