Skip to content

Commit bf48289

Browse files
authored
Hubsize chart (stolostron#1464)
* Added HubSize to render Signed-off-by: Nathaniel Graham <ngraham@redhat.com> * Added hubSize to values.yaml in several places Signed-off-by: Nathaniel Graham <ngraham@redhat.com> * Updated HubSize default to Small Signed-off-by: Nathaniel Graham <ngraham@redhat.com> * Updated cluster-permission values.yaml Signed-off-by: Nathaniel Graham <ngraham@redhat.com> * cluster-permission values updated Signed-off-by: Nathaniel Graham <ngraham@redhat.com> --------- Signed-off-by: Nathaniel Graham <ngraham@redhat.com>
1 parent baf7d55 commit bf48289

File tree

18 files changed

+92
-99
lines changed

18 files changed

+92
-99
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ vendor/
1616
bundle/manifests/multiclusterhub-operator_v1_serviceaccount.yaml
1717

1818
hack/prereqs/pull-secret.yaml
19+
hack/bundle-automation/tmp/
1920

2021
test/function_tests/results
2122
hack/bundle-automation/__pycache__

api/v1/multiclusterhub_types.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ type MultiClusterHubSpec struct {
7979
// The resource allocation bucket for this hub to use.
8080
// [Small, Medium, Large, ExtraLarge]. Defaults to Medium if not specified.
8181
//+kubebuilder:validation:Enum:=Small;Medium;Large;ExtraLarge
82-
//+kubebuilder:default:=Medium
82+
//+kubebuilder:default:=Small
8383
//+kubebuilder:validation:Type:=string
8484
//+operator-sdk:csv:customresourcedefinitions:type=spec,displayName="Hub Size",xDescriptors={"urn:alm:descriptor:com.tectonic.ui:hidden"}
8585
HubSize HubSize `json:"hubSize,omitempty"`

bundle/manifests/multiclusterhub-operator.clusterserviceversion.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ metadata:
1717
capabilities: Basic Install
1818
categories: Integration & Delivery
1919
certified: "false"
20-
createdAt: "2024-04-02T20:35:16Z"
20+
createdAt: "2024-04-22T16:20:47Z"
2121
description: Open management of Openshift and Kubernetes clusters
2222
operators.operatorframework.io/builder: operator-sdk-v1.34.1
2323
operators.operatorframework.io/project_layout: go.kubebuilder.io/v3

hack/bundle-automation/chart-templates/values.yaml

+1-2
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,12 @@
33
# Copyright Contributors to the Open Cluster Management project
44

55
org: open-cluster-management
6-
76
global:
87
pullSecret: null
98
imageOverrides: {}
109
templateOverrides: {}
1110
namespace: default
12-
11+
hubSize: Small
1312
hubconfig:
1413
nodeSelector: null
1514
replicaCount: 1

hack/bundle-automation/chart-values/managed-serviceaccount/values.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,5 @@ agentInstallAll: false
55
featureGates:
66
ephemeralIdentity: true
77
agentImagePullSecret: ""
8+
global:
9+
hubSize: Small

pkg/rendering/renderer.go

+3
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ type Global struct {
4343
InstallPlanApproval subv1alpha1.Approval `json:"installPlanApproval" structs:"installPlanApproval"`
4444
Source string `json:"source" structs:"source"`
4545
SourceNamespace string `json:"sourceNamespace" structs:"sourceNamespace"`
46+
HubSize v1.HubSize `json:"hubSize" structs:"hubSize" yaml:"hubSize"`
4647
}
4748

4849
type HubConfig struct {
@@ -312,6 +313,8 @@ func injectValuesOverrides(values *Values, mch *v1.MultiClusterHub, images map[s
312313

313314
values.Global.ImageRepository = utils.GetImageRepository(mch)
314315

316+
values.Global.HubSize = mch.Spec.HubSize
317+
315318
values.HubConfig.ReplicaCount = utils.DefaultReplicaCount(mch)
316319

317320
values.HubConfig.NodeSelector = mch.Spec.NodeSelector

pkg/templates/charts/toggle/cluster-backup/values.yaml

+25-33
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
# Declare variables to be passed into your templates.
66

77
org: open-cluster-management
8-
98
global:
109
pullPolicy: Always
1110
pullSecret: null
@@ -17,7 +16,7 @@ global:
1716
installPlanApproval: Automatic
1817
source: redhat-operators
1918
sourceNamespace: openshift-marketplace
20-
19+
hubSize: Small
2120
hubconfig:
2221
nodeSelector: null
2322
replicaCount: 1
@@ -27,50 +26,43 @@ hubconfig:
2726
- key: dedicated
2827
operator: Exists
2928
effect: NoSchedule
30-
- effect: NoSchedule
31-
key: node-role.kubernetes.io/infra
29+
- effect: NoSchedule
30+
key: node-role.kubernetes.io/infra
3231
operator: Exists
33-
3432
affinity:
3533
podAntiAffinity:
3634
preferredDuringSchedulingIgnoredDuringExecution:
37-
- weight: 70
38-
podAffinityTerm:
39-
topologyKey: topology.kubernetes.io/zone
40-
labelSelector:
41-
matchExpressions:
42-
- key: ocm-antiaffinity-selector
43-
operator: In
44-
values:
45-
- clusterbackup
46-
- weight: 35
47-
podAffinityTerm:
48-
topologyKey: kubernetes.io/hostname
49-
labelSelector:
50-
matchExpressions:
51-
- key: ocm-antiaffinity-selector
52-
operator: In
53-
values:
54-
- clusterbackup
55-
35+
- weight: 70
36+
podAffinityTerm:
37+
topologyKey: topology.kubernetes.io/zone
38+
labelSelector:
39+
matchExpressions:
40+
- key: ocm-antiaffinity-selector
41+
operator: In
42+
values:
43+
- clusterbackup
44+
- weight: 35
45+
podAffinityTerm:
46+
topologyKey: kubernetes.io/hostname
47+
labelSelector:
48+
matchExpressions:
49+
- key: ocm-antiaffinity-selector
50+
operator: In
51+
values:
52+
- clusterbackup
5653
arch:
57-
- amd64
58-
- ppc64le
59-
- s390x
60-
- arm64
61-
54+
- amd64
55+
- ppc64le
56+
- s390x
57+
- arm64
6258
enabled: true
63-
6459
clusterbackup:
6560
resources:
6661
requests:
6762
memory: "256Mi"
6863
cpu: "50m"
69-
70-
7164
BackupRestorePolicyName: backup-restore-enabled
7265
ClusterCollisionPhase: BackupCollision
73-
7466
oadpOperator:
7567
name: redhat-oadp-operator
7668
channel: stable-1.3

pkg/templates/charts/toggle/cluster-lifecycle/values.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ global:
55
namespace: default
66
pullSecret: null
77
imageRepository: "" # utils.GetImageRepository(m)
8+
hubSize: Small
89
hubconfig:
910
nodeSelector: null
1011
proxyConfigs: {}
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
1-
# Copyright (c) 2024 Red Hat, Inc.
2-
# Copyright Contributors to the Open Cluster Management project
3-
41
apiVersion: v2
5-
appVersion: 2.11.0
2+
appVersion: 1.16.0
63
description: A controller for managing RBAC resources to the managed clusters.
74
name: cluster-permission
85
type: application
9-
version: 2.11.0
6+
version: 2.3.0
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
global:
2+
hubSize: Small
3+
templateOverrides: {}
24
imageOverrides:
35
cluster_permission: ''
4-
templateOverrides: {}
56
namespace: open-cluster-management
67
pullSecret: null
78
hubconfig:
89
nodeSelector: null
910
proxyConfigs: {}
1011
replicaCount: 1
1112
tolerations: []
12-
ocpVersion: 4.12.0
1313
org: open-cluster-management

pkg/templates/charts/toggle/console/values.yaml

+6-7
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,19 @@
33
# Declare variables to be passed into your templates.
44

55
org: open-cluster-management
6-
76
global:
87
imageOverrides:
98
console: ""
109
templateOverrides: {}
11-
# Available template overrides:
12-
# console_deployment_container_memory_request: <memory-value>
13-
# console_deployment_container_memory_limit: <memory-value>
14-
# console_deployment_container_cpu_request: <cpu-value>
15-
# console_deployment_container_cpu_limit: <cpu-value>
10+
# Available template overrides:
11+
# console_deployment_container_memory_request: <memory-value>
12+
# console_deployment_container_memory_limit: <memory-value>
13+
# console_deployment_container_cpu_request: <cpu-value>
14+
# console_deployment_container_cpu_limit: <cpu-value>
1615
namespace: default
1716
pullSecret: null
1817
pullPolicy: Always
18+
hubSize: Small
1919
hubconfig:
2020
nodeSelector: null
2121
proxyConfigs: {}
@@ -24,7 +24,6 @@ hubconfig:
2424
hubVersion: ""
2525
ocpIngress: ""
2626
subscriptionPause: "false"
27-
2827
# clusterImageSets:
2928
# subscriptionPause: "false"
3029
# acmHiveOpenshiftReleaseUrl: "https://github.com/stolostron/acm-hive-openshift-releases.git"

pkg/templates/charts/toggle/grc/values.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ global:
1313
namespace: default
1414
pullSecret: null
1515
pullPolicy: Always
16+
hubSize: Small
1617
hubconfig:
1718
nodeSelector: null
1819
proxyConfigs: {}

pkg/templates/charts/toggle/insights/values.yaml

+41-45
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,16 @@
22
# Copyright Contributors to the Open Cluster Management project
33

44
org: open-cluster-management
5-
65
global:
76
pullPolicy: Always
87
pullSecret: null
8+
hubSize: Small
99
namespace: open-cluster-management
1010
arch:
11-
- amd64
12-
- ppc64le
13-
- s390x
14-
- arm64
11+
- amd64
12+
- ppc64le
13+
- s390x
14+
- arm64
1515
certificateAuthority:
1616
issuer: multicloud-ca-issuer
1717
kind: Issuer
@@ -21,59 +21,55 @@ global:
2121
kube_rbac_proxy: ""
2222
templateOverrides: {}
2323
ocpingress: ""
24-
2524
hubconfig:
2625
nodeSelector: null
2726
replicaCount: 1
2827
tolerations: []
2928
ocpVersion: 4.12.0
30-
3129
client:
3230
affinity:
3331
podAntiAffinity:
3432
preferredDuringSchedulingIgnoredDuringExecution:
35-
- weight: 70
36-
podAffinityTerm:
37-
topologyKey: topology.kubernetes.io/zone
38-
labelSelector:
39-
matchExpressions:
40-
- key: ocm-antiaffinity-selector
41-
operator: In
42-
values:
43-
- insightsclient
44-
- weight: 35
45-
podAffinityTerm:
46-
topologyKey: kubernetes.io/hostname
47-
labelSelector:
48-
matchExpressions:
49-
- key: ocm-antiaffinity-selector
50-
operator: In
51-
values:
52-
- insightsclient
53-
33+
- weight: 70
34+
podAffinityTerm:
35+
topologyKey: topology.kubernetes.io/zone
36+
labelSelector:
37+
matchExpressions:
38+
- key: ocm-antiaffinity-selector
39+
operator: In
40+
values:
41+
- insightsclient
42+
- weight: 35
43+
podAffinityTerm:
44+
topologyKey: kubernetes.io/hostname
45+
labelSelector:
46+
matchExpressions:
47+
- key: ocm-antiaffinity-selector
48+
operator: In
49+
values:
50+
- insightsclient
5451
metrics:
5552
affinity:
5653
podAntiAffinity:
5754
preferredDuringSchedulingIgnoredDuringExecution:
58-
- weight: 70
59-
podAffinityTerm:
60-
topologyKey: topology.kubernetes.io/zone
61-
labelSelector:
62-
matchExpressions:
63-
- key: ocm-antiaffinity-selector
64-
operator: In
65-
values:
66-
- insightsmetrics
67-
- weight: 35
68-
podAffinityTerm:
69-
topologyKey: kubernetes.io/hostname
70-
labelSelector:
71-
matchExpressions:
72-
- key: ocm-antiaffinity-selector
73-
operator: In
74-
values:
75-
- insightsmetrics
76-
55+
- weight: 70
56+
podAffinityTerm:
57+
topologyKey: topology.kubernetes.io/zone
58+
labelSelector:
59+
matchExpressions:
60+
- key: ocm-antiaffinity-selector
61+
operator: In
62+
values:
63+
- insightsmetrics
64+
- weight: 35
65+
podAffinityTerm:
66+
topologyKey: kubernetes.io/hostname
67+
labelSelector:
68+
matchExpressions:
69+
- key: ocm-antiaffinity-selector
70+
operator: In
71+
values:
72+
- insightsmetrics
7773
insights:
7874
name: insights
7975
client:

pkg/templates/charts/toggle/multicloud-operators-subscription/values.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
global:
2+
hubSize: Small
23
imageOverrides:
34
multicloud_integrations: ''
45
multicluster_operators_application: ''

pkg/templates/charts/toggle/multicluster-observability-operator/values.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
global:
2+
hubSize: Small
23
imageOverrides:
34
multicluster_observability_operator: ''
45
namespace: default

pkg/templates/charts/toggle/search-v2-operator/values.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
global:
2+
hubSize: Small
23
imageOverrides:
34
kube_rbac_proxy: ''
45
postgresql_13: ''

pkg/templates/charts/toggle/submariner-addon/values.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
global:
2+
hubSize: Small
23
imageOverrides:
34
submariner_addon: ''
45
namespace: default

pkg/templates/charts/toggle/volsync-controller/values.yaml

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
11
org: stolostron
2-
32
global:
43
pullPolicy: Always
54
imageOverrides:
65
volsync_addon_controller: ""
76
templateOverrides: {}
8-
7+
hubSize: Small
98
pullSecret: null
10-
119
hubconfig:
1210
nodeSelector: null
1311
replicaCount: 1

0 commit comments

Comments
 (0)