The ssl.conf Apache mod_ssl configuration template is duplicated
across service operators. Every operator ships the exact
same file. A TLS policy change (cipher suite, protocol version) requires
coordinated patches across all repositories.
This document describes a unified approach to managing Kubernetes probes in RHOSO (liveness, readiness, and startup) across service operators, based on an existing lib-common module [0].
The probe configuration system addresses two key aspects:
- User customization: How services can define overrides for probe configurations
- Operator consumption: How operators can consume these overrides through a consistent, type-safe interface
This document outlines the hotfix process for an OpenStack service deployed on OpenShift. The procedure assumes the following:
- Internal Registry Usage: Use the OpenShift internal container image registry instead of a third-party registry. To enable access from EDPM nodes, expose the registry via an OpenShift Route.
This guide outlines how to set up an external Ceph cluster using the ROOK operator in a CRC (CodeReady Containers) or SNO (Single Node OpenShift) environment. The instructions assume you're using the install_yamls project and openstack-ceph scripts for development tools.
The setup involves 2 nodes:
- a
crcenvironment that can be replaced by aSNO
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| set -x | |
| REF_REPO="glance-operator" | |
| PR_NUMBER="329" | |
| DEPENDS_ON=$(curl -s -X GET -H \ | |
| -H "Accept: application/vnd.github+json" \ | |
| -H "X-GitHub-Api-Version: 2022-11-28" \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| TIME=5 | |
| STORAGE_NETWORK=${STORAGE_NETWORK:-"172.17.3.0/24"} | |
| cat <<EOF>rgw_spec | |
| --- | |
| service_type: rgw | |
| service_id: rgw | |
| service_name: rgw.rgw |
NewerOlder