Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump up app mobility version #488

Merged
merged 2 commits into from
Feb 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions bundle/manifests/dell-csm-operator.clusterserviceversion.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ metadata:
"name": "metrics-powerscale"
}
],
"configVersion": "v1.7.0",
"configVersion": "v1.8.0",
"enabled": false,
"name": "observability"
},
Expand Down Expand Up @@ -380,7 +380,7 @@ metadata:
"name": "podmon-node"
}
],
"configVersion": "v1.8.1",
"configVersion": "v1.9.0",
"enabled": false,
"name": "resiliency"
}
Expand Down Expand Up @@ -688,7 +688,7 @@ metadata:
"name": "metrics-powermax"
}
],
"configVersion": "v1.7.0",
"configVersion": "v1.8.0",
"enabled": false,
"name": "observability"
}
Expand Down Expand Up @@ -832,7 +832,7 @@ metadata:
"name": "podmon-node"
}
],
"configVersion": "v1.8.1",
"configVersion": "v1.9.0",
"enabled": false,
"name": "resiliency"
}
Expand Down Expand Up @@ -1169,7 +1169,7 @@ metadata:
"name": "metrics-powerflex"
}
],
"configVersion": "v1.7.0",
"configVersion": "v1.8.0",
"enabled": false,
"name": "observability"
},
Expand Down Expand Up @@ -1260,7 +1260,7 @@ metadata:
"name": "podmon-node"
}
],
"configVersion": "v1.8.1",
"configVersion": "v1.9.0",
"enabled": false,
"name": "resiliency"
}
Expand All @@ -1271,7 +1271,7 @@ metadata:
capabilities: Seamless Upgrades
categories: Storage
containerImage: docker.io/dellemc/dell-csm-operator:v1.5.0
createdAt: "2023-12-22T09:14:07Z"
createdAt: "2024-02-23T08:11:16Z"
description: Easily install and manage Dell’s CSI Drivers and CSM
operators.operatorframework.io/builder: operator-sdk-v1.32.0
operators.operatorframework.io/project_layout: go.kubebuilder.io/v3
Expand Down Expand Up @@ -3575,5 +3575,5 @@ spec:
- image: docker.io/dellemc/connectivity-cert-persister-k8s:0.7.0
name: cert-persister
skips:
- dell-csm-operator.v1.4.0
version: 1.4.1
- dell-csm-operator.v1.4.2
version: 1.5.0
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ kind: ClusterServiceVersion
metadata:
annotations:
alm-examples: '[]'
capabilities: Basic Install
capabilities: Seamless Upgrades
categories: Storage
containerImage: docker.io/dellemc/dell-csm-operator:v1.5.0
createdAt: "2022-03-29T11:59:59Z"
Expand Down Expand Up @@ -1173,5 +1173,6 @@ spec:
name: podmon-node
- image: gcr.io/kubebuilder/kube-rbac-proxy:v0.8.0
name: kube-rbac-proxy
replaces: dell-csm-operator.v1.4.0
skips:
- dell-csm-operator.v1.4.2
version: 1.5.0
2 changes: 1 addition & 1 deletion controllers/csm_controller_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1294,7 +1294,7 @@ func getAppMob() []csmv1.Module {
{
Name: csmv1.ApplicationMobility,
Enabled: true,
ConfigVersion: "v1.0.0",
ConfigVersion: "v1.1.0",
Components: []csmv1.ContainerTemplate{
{
Name: "application-mobility-controller-manager",
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
apiVersion: v1
kind: Service
metadata:
labels:
control-plane: controller-manager
name: application-mobility-controller-manager-metrics-service
namespace: <NAMESPACE>
spec:
ports:
- name: https
port: 8443
protocol: TCP
targetPort: https
selector:
control-plane: controller-manager
---
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRole
metadata:
name: <NAMESPACE>-metrics-reader
rules:
- nonResourceURLs:
- /metrics
verbs:
- get
Loading
Loading