From 7a429c7332f01c25800954f577bc993531d9ecd3 Mon Sep 17 00:00:00 2001 From: Andrey Pavlov Date: Tue, 15 Nov 2016 14:29:53 +0300 Subject: [PATCH] Enable updates for Ingress resources Ingress resources can be updated as well Change-Id: Ife7113d64c68bfe589a258f099b7354d84bf81dd --- fuel_ccp_entrypoint/start_script.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fuel_ccp_entrypoint/start_script.py b/fuel_ccp_entrypoint/start_script.py index 4dbda54..aa293f4 100644 --- a/fuel_ccp_entrypoint/start_script.py +++ b/fuel_ccp_entrypoint/start_script.py @@ -368,7 +368,7 @@ def get_pykube_object(object_dict, namespace, client): return obj_class(client, object_dict) -UPDATABLE_OBJECTS = ('ConfigMap', 'Deployment', 'Service') +UPDATABLE_OBJECTS = ('ConfigMap', 'Deployment', 'Service', 'Ingress') def process_pykube_object(object_dict, namespace, client):