Skip to content
This repository was archived by the owner on Aug 7, 2025. It is now read-only.

Commit 17ee9d5

Browse files
author
Ganesh Maharaj Mahalingam
authored
Upgrades to components in preparation of k8s 1.25 (#345)
Signed-off-by: Ganesh Maharaj Mahalingam <[email protected]>
1 parent ae85c01 commit 17ee9d5

File tree

12 files changed

+130
-11
lines changed

12 files changed

+130
-11
lines changed
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
resources:
2+
- canal/canal.yaml
3+
4+
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
apiVersion: v1
3+
kind: ServiceAccount
4+
metadata:
5+
name: admin-user
6+
namespace: kubernetes-dashboard
7+
---
8+
apiVersion: rbac.authorization.k8s.io/v1
9+
kind: ClusterRoleBinding
10+
metadata:
11+
name: admin-user
12+
roleRef:
13+
apiGroup: rbac.authorization.k8s.io
14+
kind: ClusterRole
15+
name: cluster-admin
16+
subjects:
17+
- kind: ServiceAccount
18+
name: admin-user
19+
namespace: kubernetes-dashboard
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
resources:
2+
- dashboard/aio/deploy/recommended.yaml
3+
- dashboard-admin.yaml
4+
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
resources:
2+
- instrumentation-addons/fluentd-elasticsearch/create-logging-namespace.yaml
3+
- instrumentation-addons/fluentd-elasticsearch/es-service.yaml
4+
- instrumentation-addons/fluentd-elasticsearch/es-statefulset.yaml
5+
- instrumentation-addons/fluentd-elasticsearch/fluentd-es-configmap.yaml
6+
- instrumentation-addons/fluentd-elasticsearch/fluentd-es-ds.yaml
7+
- instrumentation-addons/fluentd-elasticsearch/kibana-deployment.yaml
8+
- instrumentation-addons/fluentd-elasticsearch/kibana-service.yaml
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
resources:
2+
- rook/deploy/examples/cluster.yaml
3+
- rook/deploy/examples/csi/rbd/storageclass.yaml
4+
5+
patchesStrategicMerge:
6+
- probe_timeout.yaml
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
---
2+
apiVersion: ceph.rook.io/v1
3+
kind: CephCluster
4+
metadata:
5+
name: rook-ceph
6+
namespace: rook-ceph
7+
spec:
8+
healthCheck:
9+
startupProbe:
10+
osd:
11+
probe:
12+
timeoutSeconds: 120
13+
initialDelaySeconds: 100
14+
periodSeconds: 10
15+
failureThreshold: 10
16+
successThreshold: 1
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
resources:
2+
- rook/deploy/examples/cluster.yaml
3+
- rook/deploy/examples/csi/rbd/storageclass.yaml
4+
5+
patchesStrategicMerge:
6+
# patches rook to use 'directories' instead of partitions.
7+
# comment out to use partitions
8+
- patch_cephcluster.yaml
9+
- probe_timeout.yaml
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
apiVersion: ceph.rook.io/v1
3+
kind: CephCluster
4+
metadata:
5+
name: rook-ceph
6+
namespace: rook-ceph
7+
spec:
8+
mon:
9+
allowMultiplePerNode: true
10+
---
11+
apiVersion: ceph.rook.io/v1
12+
kind: CephBlockPool
13+
metadata:
14+
name: replicapool
15+
namespace: rook-ceph
16+
spec:
17+
replicated:
18+
requireSafeReplicaSize: false
19+
size: 1
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
---
2+
apiVersion: ceph.rook.io/v1
3+
kind: CephCluster
4+
metadata:
5+
name: rook-ceph
6+
namespace: rook-ceph
7+
spec:
8+
healthCheck:
9+
startupProbe:
10+
mon:
11+
probe:
12+
timeoutSeconds: 10
13+
initialDelaySeconds: 100
14+
periodSeconds: 10
15+
failureThreshold: 12
16+
successThreshold: 1
17+
mgr:
18+
probe:
19+
timeoutSeconds: 10
20+
initialDelaySeconds: 100
21+
periodSeconds: 10
22+
failureThreshold: 12
23+
successThreshold: 1
24+
osd:
25+
probe:
26+
timeoutSeconds: 10
27+
initialDelaySeconds: 100
28+
periodSeconds: 10
29+
failureThreshold: 12
30+
successThreshold: 1

clr-k8s-examples/8-kata/overlays/2.4.0/.gitkeep

Whitespace-only changes.

0 commit comments

Comments
 (0)