Fix non-rbac deployment of resources as a list (#1613)

* Use kubectl apply instead of create/replace

Disable checks for existing resources to speed up execution.

* Fix non-rbac deployment of resources as a list

* Fix autoscaler tolerations field

* set all kube resources to state=latest

* Update netchecker and weave
This commit is contained in:
Matthew Mosesohn
2017-09-05 08:23:12 +03:00
committed by GitHub
parent fc7905653e
commit d279d145d5
12 changed files with 22 additions and 27 deletions

View File

@@ -12,7 +12,7 @@
name: "kibana-logging"
namespace: "{{system_namespace}}"
resource: "deployment"
state: "{{ item | ternary('latest','present') }}"
state: "latest"
with_items: "{{ kibana_deployment_manifest.changed }}"
run_once: true
@@ -29,6 +29,6 @@
name: "kibana-logging"
namespace: "{{system_namespace}}"
resource: "svc"
state: "{{ item | ternary('latest','present') }}"
state: "latest"
with_items: "{{ kibana_service_manifest.changed }}"
run_once: true