-
Notifications
You must be signed in to change notification settings - Fork 4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2175 from Denton24646/tweak/update-Dockerfile-CMD…
…-updater-admission-controller tweak: add CMD to updater and admission-controller Dockerfile Entrypoint
- Loading branch information
Showing
2 changed files
with
4 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 "[email protected]" | ||
|
||
ADD updater updater | ||
|
||
ENTRYPOINT ./updater --v=4 --stderrthreshold=info | ||
ENTRYPOINT ["./updater"] | ||
CMD ["--v=4", "--stderrthreshold=info"] |