Commit a9da014b authored by keshavprasadms's avatar keshavprasadms
Browse files

fix: updating to kube kong consumers role

No related merge requests found
Showing with 8 additions and 6 deletions
+8 -6
......@@ -24,13 +24,12 @@
# retries: 60
# delay: 5
- name: Extracting where the host in which api manager is running
command: bash -lc "sudo docker service ps api-manager_kong | grep Runn | head -n1 | awk '{print $4}'"
register: kong_running_host
delegate_to: "{{groups['swarm-manager-1'][0]}}"
- name: Getting private lb ip
command: kubectl get svc -n istio-system ingressgateway-private -o jsonpath='{.status.loadBalancer.ingress[0].ip}'
register: private_lb_ip
- set_fact:
kong_admin_api_url: "http://{{kong_running_host.stdout}}:8001"
kong_admin_api_url: "http://{{private_lb_ip.stdout}}/admin-api"
- name: Run script to save consumers
shell: "python /tmp/kong-api-scripts/kong_consumers.py /tmp/kong_consumers.json --kong-admin-api-url={{ kong_admin_api_url }}"
......@@ -56,5 +55,8 @@
ignore_errors: yes
- name: remove the file
file: path=~/jwt_token.txt state=absent
file: path={{ item }} state=absent
ignore_errors: yes
with_items:
- /tmp/jwt_token_output.txt
- /tmp/jwt_token.txt
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment