Created
April 5, 2021 18:30
-
-
Save clcollins/ab83c195c5d441d88225a49fd23be978 to your computer and use it in GitHub Desktop.
Deploy Openshift File Integrity Operator
This file contains hidden or 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
--- | |
apiVersion: v1 | |
kind: Namespace | |
metadata: | |
name: openshift-file-integrity | |
--- | |
apiVersion: operators.coreos.com/v1 | |
kind: OperatorGroup | |
metadata: | |
name: openshift-file-integrity | |
namespace: openshift-file-integrity | |
spec: | |
targetNamespaces: | |
- openshift-file-integrity | |
--- | |
apiVersion: operators.coreos.com/v1alpha1 | |
kind: Subscription | |
metadata: | |
name: file-integrity-operator | |
namespace: openshift-file-integrity | |
spec: | |
channel: "4.6" | |
name: file-integrity-operator | |
source: redhat-operators | |
sourceNamespace: openshift-marketplace |
This file contains hidden or 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
--- | |
apiVersion: fileintegrity.openshift.io/v1alpha1 | |
kind: FileIntegrity | |
metadata: | |
name: fileintegrity | |
namespace: openshift-file-integrity | |
spec: | |
config: | |
gracePeriod: 300 | |
tolerations: | |
- effect: NoSchedule | |
key: node-role.kubernetes.io/infra | |
operator: Exists | |
- effect: NoSchedule |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment