46704f7702
This changes our tweak of glance policy to use the new yaml format instead of json. Glance needs to tweak this file too in some jobs, and it's easier to do that in two places if the more modern yaml format is used. Change-Id: I4d4263987719d4885f114931130a71877f25d21e Related-Bug: #1916926
16 lines
573 B
YAML
16 lines
573 B
YAML
- hosts: controller
|
|
tasks:
|
|
- name: create local.sh
|
|
become: yes
|
|
blockinfile:
|
|
path: /opt/stack/devstack/local.sh
|
|
create: True
|
|
mode: 0777
|
|
block: |
|
|
# This policy is default to admin only in glance. Override
|
|
# here to allow everyone and every type of image (private
|
|
# or public) to copy. This way we will be able to test copy
|
|
# image via non-admin as well as on private images.
|
|
echo $'"copy_image": ""' >> /etc/glance/policy.yaml
|
|
sudo systemctl restart 'devstack@g-*'
|