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

🤖 Sync from open-cluster-management-io/policy-collection: #477 #66

Merged
merged 1 commit into from
May 15, 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
Original file line number Diff line number Diff line change
Expand Up @@ -35,3 +35,35 @@ spec:
($awsAccess.data.AWS_ACCESS_KEY_ID | base64dec)
($awsAccess.data.AWS_SECRET_ACCESS_KEY | base64dec)
) | base64enc }}
---
apiVersion: v1
data:
.dockerconfigjson: '{{- if eq (lookup "v1" "Secret" "open-cluster-management" "multiclusterhub-operator-pull-secret").kind "Secret" -}} {{- fromSecret "open-cluster-management" "multiclusterhub-operator-pull-secret" ".dockerconfigjson" -}} {{- else -}} {{- fromSecret "openshift-config" "pull-secret" ".dockerconfigjson" -}} {{- end -}}'
kind: Secret
metadata:
name: multiclusterhub-operator-pull-secret
namespace: open-cluster-management-observability
type: kubernetes.io/dockerconfigjson
---
apiVersion: observability.open-cluster-management.io/v1beta2
kind: MultiClusterObservability
metadata:
name: observability
spec:
observabilityAddonSpec: {}
storageConfig:
metricObjectStorage:
name: thanos-object-storage
key: thanos.yaml
---
apiVersion: console.openshift.io/v1
kind: ConsoleLink
metadata:
name: observability
spec:
applicationMenu:
section: Red Hat applications
imageURL: 'https://upload.wikimedia.org/wikipedia/commons/3/3a/OpenShift-LogoType.svg'
href: https://{{ (lookup "route.openshift.io/v1" "Route" "open-cluster-management-observability" "grafana").spec.host }}
location: ApplicationMenu
text: 'Red Hat Advanced Cluster Management Observability'

This file was deleted.

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
apiVersion: objectbucket.io/v1alpha1
kind: ObjectBucketClaim
metadata:
name: obc-observability
namespace: openshift-storage
spec:
generateBucketName: obc-observability-bucket
storageClassName: openshift-storage.noobaa.io
status:
phase: Bound
Original file line number Diff line number Diff line change
@@ -0,0 +1,89 @@
apiVersion: policy.open-cluster-management.io/v1
kind: ConfigurationPolicy
metadata:
name: policy-odf-cluster
spec:
remediationAction: enforce
severity: high
object-templates-raw: |
{{- /* create the StorageClass if on VMware */ -}}
{{- if (eq (lookup "config.openshift.io/v1" "Infrastructure" "" "cluster").spec.platformSpec.type "VSphere") }}
- complianceType: musthave
objectDefinition:
apiVersion: storage.k8s.io/v1
kind: StorageClass
metadata:
annotations:
storageclass.kubernetes.io/is-default-class: "false"
name: thin-csi-odf
parameters:
StoragePolicyName: "vSAN Default Storage Policy"
provisioner: csi.vsphere.vmware.com
allowVolumeExpansion: true
reclaimPolicy: Delete
volumeBindingMode: WaitForFirstConsumer
{{- end }}
- complianceType: musthave
objectDefinition:
apiVersion: ocs.openshift.io/v1
kind: StorageCluster
metadata:
annotations:
uninstall.ocs.openshift.io/cleanup-policy: delete
uninstall.ocs.openshift.io/mode: graceful
name: ocs-storagecluster
namespace: openshift-storage
spec:
arbiter: {}
encryption:
kms: {}
externalStorage: {}
managedResources:
cephBlockPools: {}
cephCluster: {}
cephConfig: {}
cephDashboard: {}
cephFilesystems: {}
cephObjectStoreUsers: {}
cephObjectStores: {}
cephToolbox: {}
mirroring: {}
nodeTopologies: {}
resources:
mds: {}
mgr: {}
mon: {}
noobaa-core: {}
noobaa-db: {}
noobaa-endpoint:
limits:
cpu: 1
memory: 500Mi
requests:
cpu: 1
memory: 500Mi
rgw: {}
storageDeviceSets:
- config: {}
count: 1
dataPVCTemplate:
metadata: {}
spec:
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 100Gi
{{- if (eq (lookup "config.openshift.io/v1" "Infrastructure" "" "cluster").spec.platformSpec.type "VSphere") }}
storageClassName: thin-csi-odf
{{- else }}
storageClassName: gp3-csi
{{- end }}
volumeMode: Block
status: {}
name: ocs-deviceset
placement: {}
portable: true
preparePlacement: {}
replica: 3
resources: {}
Original file line number Diff line number Diff line change
Expand Up @@ -59,11 +59,3 @@ metadata:
namespace: openshift-storage
status:
phase: Ready
---
apiVersion: objectbucket.io/v1alpha1
kind: ObjectBucketClaim
metadata:
name: obc-observability
namespace: openshift-storage
status:
phase: Bound
Original file line number Diff line number Diff line change
Expand Up @@ -35,60 +35,6 @@ spec:
name: ocs-storagecluster
namespace: openshift-storage
---
apiVersion: ocs.openshift.io/v1
kind: StorageCluster
metadata:
annotations:
uninstall.ocs.openshift.io/cleanup-policy: delete
uninstall.ocs.openshift.io/mode: graceful
name: ocs-storagecluster
namespace: openshift-storage
spec:
arbiter: {}
encryption:
kms: {}
externalStorage: {}
managedResources:
cephBlockPools: {}
cephCluster: {}
cephConfig: {}
cephDashboard: {}
cephFilesystems: {}
cephObjectStoreUsers: {}
cephObjectStores: {}
cephToolbox: {}
mirroring: {}
nodeTopologies: {}
storageDeviceSets:
- config: {}
count: 1
dataPVCTemplate:
metadata: {}
spec:
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 100Gi
storageClassName: gp3-csi
volumeMode: Block
status: {}
name: ocs-deviceset-gp3-csi
placement: {}
portable: true
preparePlacement: {}
replica: 3
resources: {}
---
apiVersion: objectbucket.io/v1alpha1
kind: ObjectBucketClaim
metadata:
name: obc-observability
namespace: openshift-storage
spec:
generateBucketName: obc-observability-bucket
storageClassName: openshift-storage.noobaa.io
---
apiVersion: operator.openshift.io/v1
kind: Console
metadata:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ policies:
remediationAction: inform
# ACS Policies - end
# Observability Policy - start
- name: policy-ocm-observability
- name: policy-observability-storage
consolidateManifests: false
categories:
- CA Assessment Authorization and Monitoring
Expand All @@ -122,7 +122,17 @@ policies:
dependencies:
- name: policy-odf-status
manifests:
- path: input-acm-observability/
- path: input-acm-observability/storage.yaml
- name: policy-observability-operator
consolidateManifests: false
categories:
- CA Assessment Authorization and Monitoring
controls:
- CA-7 Continuous Monitoring
dependencies:
- name: policy-observability-storage
manifests:
- path: input-acm-observability/operator.yaml
# Observability Policy - end
# ODF Policies - start
- name: policy-odf
Expand All @@ -132,6 +142,15 @@ policies:
- SI-7 Software Firmware and Information Integrity
manifests:
- path: input-odf/policy-odf.yaml
- name: policy-odf-cluster
categories:
- SI System and Information Integrity
controls:
- SI-7 Software Firmware and Information Integrity
dependencies:
- name: policy-odf
manifests:
- path: input-odf/policy-odf-cluster.yaml
- name: policy-odf-status
categories:
- SI System and Information Integrity
Expand Down