Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Disable TLS-E #393

Merged
merged 1 commit into from
Apr 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions docs_user/modules/openstack-backend_services_deployment.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,10 @@ spec:
secret: osp-secret
storageClass: local-storage

tls:
podLevel:
enabled: false

barbican:
enabled: false
template:
Expand Down
1 change: 1 addition & 0 deletions docs_user/modules/openstack-dataplane_adoption.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -260,6 +260,7 @@ kind: OpenStackDataPlaneNodeSet
metadata:
name: openstack
spec:
tlsEnabled: false
networkAttachments:
- ctlplane
preProvisioned: true
Expand Down
11 changes: 11 additions & 0 deletions tests/config/base/openstack_control_plane.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,17 @@ spec:
secret: osp-secret
storageClass: local-storage

tls:
podLevel:
enabled: false

barbican:
enabled: false
template:
barbicanAPI: {}
barbicanWorker: {}
barbicanKeystoneListener: {}

cinder:
enabled: false
template:
Expand Down
1 change: 1 addition & 0 deletions tests/roles/dataplane_adoption/tasks/main.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
- name: use ansible-runner image built from source or latest if none is defined

Check warning on line 1 in tests/roles/dataplane_adoption/tasks/main.yaml

View workflow job for this annotation

GitHub Actions / Ansible Lint

jinja[spacing]

Jinja2 spacing could be improved: {{ shell_header }}
no_log: "{{ use_no_log }}"
ansible.builtin.shell: |
{{ shell_header }}
Expand Down Expand Up @@ -139,7 +139,7 @@
playbook: osp.edpm.nova
EOF

- name: deploy dataplane

Check warning on line 142 in tests/roles/dataplane_adoption/tasks/main.yaml

View workflow job for this annotation

GitHub Actions / Ansible Lint

jinja[spacing]

Jinja2 spacing could be improved: {{ shell_header }}
ansible.builtin.shell: |
{{ shell_header }}
{{ oc_header }}
Expand All @@ -149,6 +149,7 @@
metadata:
name: openstack
spec:
tlsEnabled: false
networkAttachments:
- ctlplane
preProvisioned: true
Expand Down
Loading