Some pods are being evicted due to some containers exceeding the
usage of ephemeral-storage. This modifications has been applied by
[1] in the armada application. This review aims to bring this
update to the FluxCD structure.
Test Plan:
PASS - Build stx-openstack tarball.
PASS - Upload/apply stx-openstack and check that new values of
ephemeral-storage took place.
PASS - Remove/delete stx-openstack.
[1] - https://review.opendev.org/c/starlingx/openstack-armada-app/+/853693
Partial-bug: 1970645
Signed-off-by: Rafael Falcao <rafael.vieirafalcao@windriver.com>
Change-Id: I56c106508091bdaaf63f441972c67970cb8835cc
50 lines
1013 B
YAML
50 lines
1013 B
YAML
#
|
|
# Copyright (c) 2022 Wind River Systems, Inc.
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
---
|
|
release_group: osh-openstack-ingress
|
|
labels:
|
|
server:
|
|
node_selector_key: openstack-control-plane
|
|
node_selector_value: enabled
|
|
error_server:
|
|
node_selector_key: openstack-control-plane
|
|
node_selector_value: enabled
|
|
images:
|
|
tags:
|
|
image_repo_sync: null
|
|
ingress_module_init: null
|
|
ingress_routed_vip: null
|
|
keepalived: null
|
|
pod:
|
|
replicas:
|
|
error_page: 2
|
|
ingress: 2
|
|
affinity:
|
|
anti:
|
|
type:
|
|
default: requiredDuringSchedulingIgnoredDuringExecution
|
|
resources:
|
|
enabled: true
|
|
ingress:
|
|
requests:
|
|
ephemeral-storage: "2000Ki"
|
|
tolerations:
|
|
ingress:
|
|
enabled: true
|
|
tolerations:
|
|
- key: node-role.kubernetes.io/master
|
|
operator: Exists
|
|
effect: NoSchedule
|
|
- key: openstack-compute-node
|
|
operator: Exists
|
|
effect: NoSchedule
|
|
conf:
|
|
ingress:
|
|
worker-processes: '4'
|
|
bind-address: "::"
|
|
...
|