Commit f5d55596 authored by William Tucker's avatar William Tucker
Browse files

Update Ansible deployment to disable auth components by default

parent 2ab7a9e2
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -19,7 +19,7 @@ image_pull: true
# Auth configuration
###
# Indicates if the auth service should be deployed or not
auth_enabled: true
auth_enabled: false

# Settings for the auth-service image
auth_image_prefix: "{{ image_prefix }}"
+11 −0
Original line number Diff line number Diff line
---

- name: Stop auth container
  docker_container:
    name: auth
    state: absent

- name: Remove auth config directory
  file:
    path: /esg/config/auth
    state: absent
+13 −0
Original line number Diff line number Diff line
---

#####
## Tasks to configure and deploy containers for the auth and opa services
#####

- name: Install auth application
  include: auth_install.yml
  when: auth_enabled

- name: Uninstall auth application
  include: auth_uninstall.yml
  when: not auth_enabled
+1 −1

File changed.

Contains only whitespace changes.