diff options
author | Gaëtan Duchaussois <gaetan.duchaussois@fretlink.com> | 2018-05-15 16:43:03 +0200 |
---|---|---|
committer | Gaëtan Duchaussois <gaetan.duchaussois@fretlink.com> | 2018-05-15 16:43:03 +0200 |
commit | f9fca1285e7a0e996a5b2db7b807ad7aff63f0d2 (patch) | |
tree | 1e1b403f215b612237fcdfcd27a749a92236e55f | |
parent | d349c5d4f502ba31e33a09c6e8d3af2d14f6196f (diff) | |
download | ansible-kong-app-f9fca1285e7a0e996a5b2db7b807ad7aff63f0d2.tar.gz ansible-kong-app-f9fca1285e7a0e996a5b2db7b807ad7aff63f0d2.tar.zst ansible-kong-app-f9fca1285e7a0e996a5b2db7b807ad7aff63f0d2.zip |
target might be marked as absent if unhealthy
-rw-r--r-- | tasks/upstream.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tasks/upstream.yml b/tasks/upstream.yml index e944c82..43c1baf 100644 --- a/tasks/upstream.yml +++ b/tasks/upstream.yml | |||
@@ -50,6 +50,6 @@ | |||
50 | method: DELETE | 50 | method: DELETE |
51 | headers: | 51 | headers: |
52 | apikey: "{{ server.kong_app_admin_apikey }}" | 52 | apikey: "{{ server.kong_app_admin_apikey }}" |
53 | status_code: 204 | 53 | status_code: 204,404 |
54 | with_items: "{{ kong_app_service_targets_check.json.data }}" | 54 | with_items: "{{ kong_app_service_targets_check.json.data }}" |
55 | when: not kong_app_service_targets_check is skipped | 55 | when: not kong_app_service_targets_check is skipped |