kube-prometheus: Update Prometheus Operator version before generating

This commit is contained in:
Max Leonard Inden
2018-04-25 17:59:09 +02:00
parent c776fa4c48
commit 157ad7eaea

View File

@@ -1,8 +1,6 @@
local k = import "ksonnet.beta.3/k.libsonnet";
local rawVersion = importstr "../../../../VERSION";
local removeLineBreaks = function(str) std.join("", std.filter(function(c) c != "\n", std.stringChars(str)));
local version = "v0.18.1";//removeLineBreaks(rawVersion);
local version = "v0.18.1";
local deployment = k.apps.v1beta2.deployment;
local container = k.apps.v1beta2.deployment.mixin.spec.template.spec.containersType;