Skip to content
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
2 changes: 0 additions & 2 deletions certs/.gitignore

This file was deleted.

33 changes: 0 additions & 33 deletions certs/README.md

This file was deleted.

This file was deleted.

This file was deleted.

4 changes: 4 additions & 0 deletions docs-devel/deployment/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,3 +42,7 @@ Once deployed the services are available at:
| Lakekeeper UI | <https://analytics.isis.cclrc.ac.uk/iceberg/ui> |
| Superset (accelerator) | <https://analytics.isis.cclrc.ac.uk/workspace/accelerator> |
| Superset (experiment_ops) | <https://analytics.isis.cclrc.ac.uk/workspace/experiment_ops> |

## Certificates

See [certificates](certificates.md) for details on certificate management.
1 change: 0 additions & 1 deletion docs-devel/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ the future.

```text
.
├── certs/ # Certificate request configurations used for HTTPS/SSL
├── docs/ # User-facing documentation site (MkDocs). See docs/src for content.
├── docs-devel/ # Developer documentation (this directory).
├── elt-common/ # Reusable Python package with common ELT helpers used by the warehouses
Expand Down
1 change: 1 addition & 0 deletions infra/ansible/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ condaenv/
galaxy_roles
*.ini
inventory.yml
*.csr
14 changes: 14 additions & 0 deletions infra/ansible/site_csr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
---
- name: Generate certificate signing request
hosts: localhost
gather_facts: false
tasks:
- name: Generate an OpenSSL Certificate Signing Request
community.crypto.openssl_csr:
path: "{{ csr_out_path }}"
privatekey_content: "{{ vault_tls_key }}"
country_name: GB
state_or_province_name: Wiltshire
organization_name: UK Research and Innovation
organizational_unit_name: STFC
common_name: "{{ top_level_domain }}"
Comment thread
coderabbitai[bot] marked this conversation as resolved.