summaryrefslogtreecommitdiff
path: root/roles
diff options
context:
space:
mode:
authorTim Burke <tim.burke@gmail.com>2020-05-26 12:54:17 -0700
committerTim Burke <tim.burke@gmail.com>2020-05-26 12:54:17 -0700
commit73f0b143d18e4920ec4d8cc35833573491e853d6 (patch)
treefaed25ef08f2db72adc9fb15df30fac5bb0abffe /roles
parent63b16a368366d7c1fb6976841ce28a914128ce6a (diff)
downloadswift-73f0b143d18e4920ec4d8cc35833573491e853d6.tar.gz
dsvm: Run service-user tests under tempauth
Change-Id: I0bdd3a1d044f8f99873f6270ca821862bb994d72
Diffstat (limited to 'roles')
-rw-r--r--roles/additional-tempauth-users/tasks/main.yaml47
1 files changed, 47 insertions, 0 deletions
diff --git a/roles/additional-tempauth-users/tasks/main.yaml b/roles/additional-tempauth-users/tasks/main.yaml
new file mode 100644
index 000000000..e906af952
--- /dev/null
+++ b/roles/additional-tempauth-users/tasks/main.yaml
@@ -0,0 +1,47 @@
+- name: Configure service auth prefix for tempauth tests
+ ini_file:
+ path: /etc/swift/proxy-server.conf
+ section: filter:tempauth
+ option: reseller_prefix
+ value: TEMPAUTH, SERVICE_TA
+ become: true
+
+- name: Configure service group for tempauth tests
+ ini_file:
+ path: /etc/swift/proxy-server.conf
+ section: filter:tempauth
+ option: SERVICE_TA_require_group
+ value: service
+ become: true
+
+- name: Configure service account for tempauth tests
+ ini_file:
+ path: "{{ ansible_env.HOME }}/{{ zuul.project.src_dir }}/test/sample.conf"
+ section: func_test
+ option: account5
+ value: test5
+ become: true
+
+- name: Configure service username for tempauth tests
+ ini_file:
+ path: "{{ ansible_env.HOME }}/{{ zuul.project.src_dir }}/test/sample.conf"
+ section: func_test
+ option: username5
+ value: tester5
+ become: true
+
+- name: Configure service user password for tempauth tests
+ ini_file:
+ path: "{{ ansible_env.HOME }}/{{ zuul.project.src_dir }}/test/sample.conf"
+ section: func_test
+ option: password5
+ value: testing5
+ become: true
+
+- name: Configure service prefix for tempauth tests
+ ini_file:
+ path: "{{ ansible_env.HOME }}/{{ zuul.project.src_dir }}/test/sample.conf"
+ section: func_test
+ option: service_prefix
+ value: SERVICE_TA
+ become: true