Skip to content

Commit

Permalink
Add Application Mobility 1.1.0 Support (#607)
Browse files Browse the repository at this point in the history
* Add app mobility 1.1.0 support

* update min upgrade path
  • Loading branch information
chimanjain authored Jun 24, 2024
1 parent 45afaaf commit 83f3ac8
Show file tree
Hide file tree
Showing 21 changed files with 4,532 additions and 14 deletions.
2 changes: 1 addition & 1 deletion controllers/csm_controller_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1540,7 +1540,7 @@ func getAppMob() []csmv1.Module {
{
Name: csmv1.ApplicationMobility,
Enabled: true,
ConfigVersion: "v1.0.2",
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

0 comments on commit 83f3ac8

Please sign in to comment.