This is continuing previous work [1] of the openstack app migration to FluxCD, adding compute-kit related charts. This change includes the following charts: libvirt, nova, nova-api-proxy, pci-irq-affinity-agent, neutron, placement and openvswitch. In order to complete the fluxcd migration it was also necessary to remove the openstack-helm Patch0016, made to fix an intermttent issue and only compatible to Armada (helmv2 and old operators). It does not fix a major issue and should be safe to be removed for a while during this migration. Its FluxCD version will be tracked by Task 46426, probably implemented using the current cinder-clean job as an example. Test Plan: PASS - build-helm-charts.sh builds a basic FluxCD app tarball PASS - application upload and overrides generated PASS - application apply/remove/delete [1] https://review.opendev.org/c/starlingx/openstack-armada-app/+/848166 Story: 2009138 Task: 45462 Signed-off-by: Thales Elero Cervi <thaleselero.cervi@windriver.com> Change-Id: I78b78058e874d9eae7051ca0cb5a1fe09b2726a3
42 lines
815 B
YAML
42 lines
815 B
YAML
#
|
|
# Copyright (c) 2022 Wind River Systems, Inc.
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
---
|
|
apiVersion: "helm.toolkit.fluxcd.io/v2beta1"
|
|
kind: HelmRelease
|
|
metadata:
|
|
name: libvirt
|
|
labels:
|
|
chart_group: openstack-libvirt
|
|
spec:
|
|
releaseName: osh-openstack-libvirt
|
|
chart:
|
|
spec:
|
|
chart: libvirt
|
|
version: 0.1.7
|
|
sourceRef:
|
|
kind: HelmRepository
|
|
name: starlingx
|
|
interval: 5m
|
|
timeout: 30m
|
|
test:
|
|
enable: false
|
|
install:
|
|
disableHooks: false
|
|
upgrade:
|
|
disableHooks: false
|
|
dependsOn:
|
|
- name: placement
|
|
namespace: openstack
|
|
valuesFrom:
|
|
- kind: Secret
|
|
name: libvirt-static-overrides
|
|
valuesKey: libvirt-static-overrides.yaml
|
|
- kind: Secret
|
|
name: libvirt-system-overrides
|
|
valuesKey: libvirt-system-overrides.yaml
|
|
...
|