Skip to content

Commit

Permalink
Merge pull request #397 from lavraham/18.0.0-proposed
Browse files Browse the repository at this point in the history
Merge pull request Enable Octavia in uni01alpha and uni07eta jobs

Enable Octavia in Uni01alpha
Enable services for octavia
Reviewed-by: John Fulton [email protected]

Reviewed-by: John Fulton <[email protected]>
  • Loading branch information
softwarefactory-project-zuul[bot] authored Sep 16, 2024
2 parents 274fdfe + c66038e commit dbccc84
Show file tree
Hide file tree
Showing 4 changed files with 74 additions and 4 deletions.
48 changes: 48 additions & 0 deletions dt/uni07eta/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -269,6 +269,54 @@ replacements:
options:
create: true

- source:
kind: ConfigMap
name: service-values
fieldPath: data.octavia.octaviaAPI.customServiceConfig
targets:
- select:
kind: OpenStackControlPlane
fieldPaths:
- spec.octavia.template.octaviaAPI.customServiceConfig
options:
create: true

- source:
kind: ConfigMap
name: service-values
fieldPath: data.octavia.octaviaHealthManager.customServiceConfig
targets:
- select:
kind: OpenStackControlPlane
fieldPaths:
- spec.octavia.template.octaviaHealthManager.customServiceConfig
options:
create: true

- source:
kind: ConfigMap
name: service-values
fieldPath: data.octavia.octaviaHousekeeping.customServiceConfig
targets:
- select:
kind: OpenStackControlPlane
fieldPaths:
- spec.octavia.template.octaviaHousekeeping.customServiceConfig
options:
create: true

- source:
kind: ConfigMap
name: service-values
fieldPath: data.octavia.octaviaWorker.customServiceConfig
targets:
- select:
kind: OpenStackControlPlane
fieldPaths:
- spec.octavia.template.octaviaWorker.customServiceConfig
options:
create: true

# OVN

- source:
Expand Down
2 changes: 1 addition & 1 deletion examples/dt/uni01alpha/control-plane/service-values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ data:
enabled: true

octavia:
enabled: false
enabled: true
amphoraImageContainerImage: quay.io/gthiemonge/octavia-amphora-image
apacheContainerImage: registry.redhat.io/ubi9/httpd-24:latest
availabilityZones:
Expand Down
8 changes: 7 additions & 1 deletion examples/dt/uni07eta/control-plane/nncp/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,13 @@ data:
"type": "whereabouts",
"range": "172.23.0.0/24",
"range_start": "172.23.0.30",
"range_end": "172.23.0.70"
"range_end": "172.23.0.70",
"routes": [
{
"dst": "172.24.0.0/16",
"gw": "172.23.0.150"
}
]
}
}
Expand Down
20 changes: 18 additions & 2 deletions examples/dt/uni07eta/control-plane/service-values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -65,21 +65,37 @@ data:


octavia:
enabled: false
amphoraImageContainerImage: quay.io/gthiemonge/octavia-amphora-image
enabled: true
# Workaround for https://issues.redhat.com/browse/OSPRH-9102
# There's a bug in uni-epsilon, the octavia-operator uploads a qcow2 image
# to glance but a pre-tests task updates the properties of a cinder volume.
# This update fails because the default volume type is already in use.
amphoraImageContainerImage: ""
apacheContainerImage: registry.redhat.io/ubi9/httpd-24:latest
octaviaAPI:
networkAttachments:
- internalapi
customServiceConfig: |
[controller_worker]
loadbalancer_topology=ACTIVE_STANDBY
octaviaHousekeeping:
networkAttachments:
- octavia
customServiceConfig: |
[controller_worker]
loadbalancer_topology=ACTIVE_STANDBY
octaviaHealthManager:
networkAttachments:
- octavia
customServiceConfig: |
[controller_worker]
loadbalancer_topology=ACTIVE_STANDBY
octaviaWorker:
networkAttachments:
- octavia
customServiceConfig: |
[controller_worker]
loadbalancer_topology=ACTIVE_STANDBY
ovn:
ovnController:
Expand Down

0 comments on commit dbccc84

Please sign in to comment.