-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upgrades to components in preparation of k8s 1.25 (#345)
Signed-off-by: Ganesh Maharaj Mahalingam <[email protected]>
- Loading branch information
Ganesh Maharaj Mahalingam
authored
Aug 29, 2022
1 parent
ae85c01
commit 17ee9d5
Showing
12 changed files
with
130 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
resources: | ||
- canal/canal.yaml | ||
|
||
|
19 changes: 19 additions & 0 deletions
19
clr-k8s-examples/2-dashboard/overlays/v2.6.1/dashboard-admin.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
--- | ||
apiVersion: v1 | ||
kind: ServiceAccount | ||
metadata: | ||
name: admin-user | ||
namespace: kubernetes-dashboard | ||
--- | ||
apiVersion: rbac.authorization.k8s.io/v1 | ||
kind: ClusterRoleBinding | ||
metadata: | ||
name: admin-user | ||
roleRef: | ||
apiGroup: rbac.authorization.k8s.io | ||
kind: ClusterRole | ||
name: cluster-admin | ||
subjects: | ||
- kind: ServiceAccount | ||
name: admin-user | ||
namespace: kubernetes-dashboard |
4 changes: 4 additions & 0 deletions
4
clr-k8s-examples/2-dashboard/overlays/v2.6.1/kustomization.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
resources: | ||
- dashboard/aio/deploy/recommended.yaml | ||
- dashboard-admin.yaml | ||
|
8 changes: 8 additions & 0 deletions
8
clr-k8s-examples/3-efk/overlays/193692c92eb4667b8f4fb7d4cdf0462e229b5f13/kustomization.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
resources: | ||
- instrumentation-addons/fluentd-elasticsearch/create-logging-namespace.yaml | ||
- instrumentation-addons/fluentd-elasticsearch/es-service.yaml | ||
- instrumentation-addons/fluentd-elasticsearch/es-statefulset.yaml | ||
- instrumentation-addons/fluentd-elasticsearch/fluentd-es-configmap.yaml | ||
- instrumentation-addons/fluentd-elasticsearch/fluentd-es-ds.yaml | ||
- instrumentation-addons/fluentd-elasticsearch/kibana-deployment.yaml | ||
- instrumentation-addons/fluentd-elasticsearch/kibana-service.yaml |
6 changes: 6 additions & 0 deletions
6
clr-k8s-examples/7-rook/overlays/v1.8.10/multinode/kustomization.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
resources: | ||
- rook/deploy/examples/cluster.yaml | ||
- rook/deploy/examples/csi/rbd/storageclass.yaml | ||
|
||
patchesStrategicMerge: | ||
- probe_timeout.yaml |
16 changes: 16 additions & 0 deletions
16
clr-k8s-examples/7-rook/overlays/v1.8.10/multinode/probe_timeout.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
--- | ||
apiVersion: ceph.rook.io/v1 | ||
kind: CephCluster | ||
metadata: | ||
name: rook-ceph | ||
namespace: rook-ceph | ||
spec: | ||
healthCheck: | ||
startupProbe: | ||
osd: | ||
probe: | ||
timeoutSeconds: 120 | ||
initialDelaySeconds: 100 | ||
periodSeconds: 10 | ||
failureThreshold: 10 | ||
successThreshold: 1 |
9 changes: 9 additions & 0 deletions
9
clr-k8s-examples/7-rook/overlays/v1.8.10/standalone/kustomization.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
resources: | ||
- rook/deploy/examples/cluster.yaml | ||
- rook/deploy/examples/csi/rbd/storageclass.yaml | ||
|
||
patchesStrategicMerge: | ||
# patches rook to use 'directories' instead of partitions. | ||
# comment out to use partitions | ||
- patch_cephcluster.yaml | ||
- probe_timeout.yaml |
19 changes: 19 additions & 0 deletions
19
clr-k8s-examples/7-rook/overlays/v1.8.10/standalone/patch_cephcluster.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
--- | ||
apiVersion: ceph.rook.io/v1 | ||
kind: CephCluster | ||
metadata: | ||
name: rook-ceph | ||
namespace: rook-ceph | ||
spec: | ||
mon: | ||
allowMultiplePerNode: true | ||
--- | ||
apiVersion: ceph.rook.io/v1 | ||
kind: CephBlockPool | ||
metadata: | ||
name: replicapool | ||
namespace: rook-ceph | ||
spec: | ||
replicated: | ||
requireSafeReplicaSize: false | ||
size: 1 |
30 changes: 30 additions & 0 deletions
30
clr-k8s-examples/7-rook/overlays/v1.8.10/standalone/probe_timeout.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
--- | ||
apiVersion: ceph.rook.io/v1 | ||
kind: CephCluster | ||
metadata: | ||
name: rook-ceph | ||
namespace: rook-ceph | ||
spec: | ||
healthCheck: | ||
startupProbe: | ||
mon: | ||
probe: | ||
timeoutSeconds: 10 | ||
initialDelaySeconds: 100 | ||
periodSeconds: 10 | ||
failureThreshold: 12 | ||
successThreshold: 1 | ||
mgr: | ||
probe: | ||
timeoutSeconds: 10 | ||
initialDelaySeconds: 100 | ||
periodSeconds: 10 | ||
failureThreshold: 12 | ||
successThreshold: 1 | ||
osd: | ||
probe: | ||
timeoutSeconds: 10 | ||
initialDelaySeconds: 100 | ||
periodSeconds: 10 | ||
failureThreshold: 12 | ||
successThreshold: 1 |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters