-
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 #2413 from bskiba/vpa-release-0.6
Rebase VPA to distroless
- Loading branch information
Showing
6 changed files
with
12 additions
and
12 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 |
---|---|---|
|
@@ -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 | ||
FROM gcr.io/distroless/static:latest | ||
MAINTAINER Tomasz Kulczynski "[email protected]" | ||
|
||
ADD admission-controller admission-controller | ||
copy admission-controller / | ||
|
||
ENTRYPOINT ["./admission-controller"] | ||
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
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 | ||
FROM gcr.io/distroless/static:latest | ||
MAINTAINER Krzysztof Grygiel "[email protected]" | ||
|
||
ADD recommender recommender | ||
COPY recommender / | ||
|
||
ENTRYPOINT ["./recommender"] | ||
ENTRYPOINT ["/recommender"] | ||
CMD ["--v=4", "--stderrthreshold=info", "--prometheus-address=http://prometheus.monitoring.svc"] |
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
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 |
---|---|---|
|
@@ -13,10 +13,10 @@ | |
# limitations under the License. | ||
|
||
|
||
FROM k8s.gcr.io/debian-base-amd64:1.0.0 | ||
FROM gcr.io/distroless/static:latest | ||
MAINTAINER Marcin Wielgus "[email protected]" | ||
|
||
ADD updater updater | ||
COPY updater / | ||
|
||
ENTRYPOINT ["./updater"] | ||
ENTRYPOINT ["/updater"] | ||
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