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

feat(helm): update rook-ceph group to v1.13.0 (minor) #6564

Merged
merged 1 commit into from
Dec 14, 2023

Conversation

bot-ross[bot]
Copy link
Contributor

@bot-ross bot-ross bot commented Dec 13, 2023

This PR contains the following updates:

Package Update Change
rook-ceph minor v1.12.9 -> v1.13.0
rook-ceph-cluster minor v1.12.9 -> v1.13.0

Release Notes

rook/rook (rook-ceph)

v1.13.0

Compare Source

Upgrade Guide

To upgrade from previous versions of Rook, see the Rook upgrade guide.

Breaking Changes
  • Removed support for Ceph Pacific (v16). Ceph Quincy (v17) and Ceph Reef (v18) are the only currently supported versions.
  • The minimum supported Kubernetes version is v1.23
  • The minimum supported Ceph-CSI driver is 3.9
  • The admission controller is removed. If the admission controller is enabled (it is disabled by default), it is recommended to be disabled before the upgrade. See the upgrade guide for more details.
Features
  • Added experimental cephConfig to the CephCluster CR to allow setting Ceph config options in the Ceph MON config store via the CRD. These settings supersede the ceph.conf override settings.
  • CephCSI v3.10 is now the default CSI driver version.
  • The default CephFS SubvolumeGroup has pinning enabled by default to distribute load across MDS ranks in predictable and stable ways.
  • The Ceph exporter daemon is updated to use a Ceph keyring with reduced privileges instead of the admin keyring.
  • If the host network setting changes in the CephCluster CR, the mons will now automatically failover to enable the new configuration.
  • Allow for additional advanced maintenance and troubleshooting of Ceph daemons, by respecting the label ceph.rook.io/do-not-reconcile for all Ceph daemons. This is helpful when using the debug command in the kubectl rook-ceph plugin.

v1.12.10

Compare Source

Improvements

Rook v1.12.10 is a patch release limited in scope and focusing on feature additions and bug fixes to the Ceph operator.


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about these updates again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

@bot-ross bot-ross bot requested a review from onedr0p as a code owner December 13, 2023 22:05
@bot-ross bot-ross bot added area/kubernetes Changes made in the kubernetes directory cluster/main labels Dec 13, 2023
@bot-ross
Copy link
Contributor Author

bot-ross bot commented Dec 13, 2023

--- kubernetes/main/apps/rook-ceph/rook-ceph/app Kustomization: flux-system/rook-ceph HelmRelease: rook-ceph/rook-ceph-operator

+++ kubernetes/main/apps/rook-ceph/rook-ceph/app Kustomization: flux-system/rook-ceph HelmRelease: rook-ceph/rook-ceph-operator

@@ -13,13 +13,13 @@

     spec:
       chart: rook-ceph
       sourceRef:
         kind: HelmRepository
         name: rook-ceph
         namespace: flux-system
-      version: v1.12.9
+      version: v1.13.0
   dependsOn:
   - name: snapshot-controller
     namespace: kube-system
   install:
     remediation:
       retries: 3
--- kubernetes/main/apps/rook-ceph/rook-ceph/cluster Kustomization: flux-system/rook-ceph-cluster HelmRelease: rook-ceph/rook-ceph-cluster

+++ kubernetes/main/apps/rook-ceph/rook-ceph/cluster Kustomization: flux-system/rook-ceph-cluster HelmRelease: rook-ceph/rook-ceph-cluster

@@ -13,13 +13,13 @@

     spec:
       chart: rook-ceph-cluster
       sourceRef:
         kind: HelmRepository
         name: rook-ceph
         namespace: flux-system
-      version: v1.12.9
+      version: v1.13.0
   dependsOn:
   - name: rook-ceph-operator
     namespace: rook-ceph
   - name: snapshot-controller
     namespace: kube-system
   install:

@bot-ross
Copy link
Contributor Author

bot-ross bot commented Dec 13, 2023

--- kubernetes/main HelmRelease: rook-ceph/rook-ceph-cluster Deployment: rook-ceph/rook-ceph-tools

+++ kubernetes/main HelmRelease: rook-ceph/rook-ceph-cluster Deployment: rook-ceph/rook-ceph-tools

@@ -87,12 +87,19 @@

           write_endpoints
 
           # continuously update the mon endpoints if they fail over
           watch_endpoints
         imagePullPolicy: IfNotPresent
         tty: true
+        securityContext:
+          capabilities:
+            drop:
+            - ALL
+          runAsGroup: 2016
+          runAsNonRoot: true
+          runAsUser: 2016
         env:
         - name: ROOK_CEPH_USERNAME
           valueFrom:
             secretKeyRef:
               name: rook-ceph-mon
               key: ceph-username
--- kubernetes/main HelmRelease: rook-ceph/rook-ceph-cluster CephFilesystemSubVolumeGroup: rook-ceph/ceph-filesystem-csi

+++ kubernetes/main HelmRelease: rook-ceph/rook-ceph-cluster CephFilesystemSubVolumeGroup: rook-ceph/ceph-filesystem-csi

@@ -0,0 +1,12 @@

+---
+apiVersion: ceph.rook.io/v1
+kind: CephFilesystemSubVolumeGroup
+metadata:
+  name: ceph-filesystem-csi
+  namespace: rook-ceph
+spec:
+  name: csi
+  filesystemName: ceph-filesystem
+  pinning:
+    distributed: 1
+
--- kubernetes/main HelmRelease: rook-ceph/rook-ceph-operator ConfigMap: rook-ceph/rook-ceph-operator-config

+++ kubernetes/main HelmRelease: rook-ceph/rook-ceph-operator ConfigMap: rook-ceph/rook-ceph-operator-config

@@ -6,13 +6,12 @@

   namespace: rook-ceph
 data:
   ROOK_LOG_LEVEL: INFO
   ROOK_CEPH_COMMANDS_TIMEOUT_SECONDS: '15'
   ROOK_OBC_WATCH_OPERATOR_NAMESPACE: 'true'
   ROOK_CEPH_ALLOW_LOOP_DEVICES: 'false'
-  ROOK_DISABLE_ADMISSION_CONTROLLER: 'true'
   ROOK_ENABLE_DISCOVERY_DAEMON: 'false'
   ROOK_CSI_ENABLE_RBD: 'true'
   ROOK_CSI_ENABLE_CEPHFS: 'true'
   CSI_ENABLE_CEPHFS_SNAPSHOTTER: 'true'
   CSI_ENABLE_NFS_SNAPSHOTTER: 'true'
   CSI_ENABLE_RBD_SNAPSHOTTER: 'true'
@@ -24,13 +23,12 @@

   CSI_PLUGIN_PRIORITY_CLASSNAME: system-node-critical
   CSI_PROVISIONER_PRIORITY_CLASSNAME: system-cluster-critical
   CSI_RBD_FSGROUPPOLICY: File
   CSI_CEPHFS_FSGROUPPOLICY: File
   CSI_NFS_FSGROUPPOLICY: File
   CSI_CEPHFS_KERNEL_MOUNT_OPTIONS: ms_mode=secure
-  ROOK_CSI_ENABLE_GRPC_METRICS: 'false'
   ROOK_CSI_IMAGE_PULL_POLICY: IfNotPresent
   CSI_ENABLE_CSIADDONS: 'false'
   ROOK_CSIADDONS_IMAGE: quay.io/csiaddons/k8s-sidecar:v0.7.0
   CSI_ENABLE_TOPOLOGY: 'false'
   CSI_ENABLE_READ_AFFINITY: 'false'
   ROOK_CSI_ENABLE_NFS: 'false'
--- kubernetes/main HelmRelease: rook-ceph/rook-ceph-operator ClusterRole: rook-ceph/rook-ceph-system

+++ kubernetes/main HelmRelease: rook-ceph/rook-ceph-operator ClusterRole: rook-ceph/rook-ceph-system

@@ -22,21 +22,12 @@

   - ''
   resources:
   - pods/exec
   verbs:
   - create
 - apiGroups:
-  - admissionregistration.k8s.io
-  resources:
-  - validatingwebhookconfigurations
-  verbs:
-  - create
-  - get
-  - delete
-  - update
-- apiGroups:
   - csiaddons.openshift.io
   resources:
   - networkfences
   verbs:
   - create
   - get
--- kubernetes/main HelmRelease: rook-ceph/rook-ceph-operator ClusterRole: rook-ceph/rook-ceph-global

+++ kubernetes/main HelmRelease: rook-ceph/rook-ceph-operator ClusterRole: rook-ceph/rook-ceph-global

@@ -13,13 +13,12 @@

 - apiGroups:
   - ''
   resources:
   - pods
   - nodes
   - nodes/proxy
-  - services
   - secrets
   - configmaps
   verbs:
   - get
   - list
   - watch
@@ -27,12 +26,13 @@

   - ''
   resources:
   - events
   - persistentvolumes
   - persistentvolumeclaims
   - endpoints
+  - services
   verbs:
   - get
   - list
   - watch
   - patch
   - create
--- kubernetes/main HelmRelease: rook-ceph/rook-ceph-operator Deployment: rook-ceph/rook-ceph-operator

+++ kubernetes/main HelmRelease: rook-ceph/rook-ceph-operator Deployment: rook-ceph/rook-ceph-operator

@@ -19,34 +19,36 @@

     type: Recreate
   template:
     metadata:
       labels:
         app: rook-ceph-operator
     spec:
+      tolerations:
+      - effect: NoExecute
+        key: node.kubernetes.io/unreachable
+        operator: Exists
+        tolerationSeconds: 5
       containers:
       - name: rook-ceph-operator
-        image: rook/ceph:v1.12.9
+        image: rook/ceph:v1.13.0
         imagePullPolicy: IfNotPresent
         args:
         - ceph
         - operator
         securityContext:
+          capabilities:
+            drop:
+            - ALL
+          runAsGroup: 2016
           runAsNonRoot: true
           runAsUser: 2016
-          runAsGroup: 2016
         volumeMounts:
         - mountPath: /var/lib/rook
           name: rook-config
         - mountPath: /etc/ceph
           name: default-config-dir
-        - mountPath: /etc/webhook
-          name: webhook-cert
-        ports:
-        - containerPort: 9443
-          name: https-webhook
-          protocol: TCP
         env:
         - name: ROOK_CURRENT_NAMESPACE_ONLY
           value: 'false'
         - name: ROOK_HOSTPATH_REQUIRES_PRIVILEGED
           value: 'false'
         - name: ROOK_DISABLE_DEVICE_HOTPLUG
@@ -75,9 +77,7 @@

       serviceAccountName: rook-ceph-system
       volumes:
       - name: rook-config
         emptyDir: {}
       - name: default-config-dir
         emptyDir: {}
-      - name: webhook-cert
-        emptyDir: {}
 

@onedr0p onedr0p merged commit bad3876 into main Dec 14, 2023
9 checks passed
@onedr0p onedr0p deleted the renovate/main-rook-ceph branch December 14, 2023 02:18
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area/kubernetes Changes made in the kubernetes directory renovate/helm type/minor
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant