-
Notifications
You must be signed in to change notification settings - Fork 140
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Added ACS Policy for Signing Violation - Added Quay to store signed Artifacts - Added Tekton Chaining for build pipeline violation - Added Cosign Signing -Updated Readme to reflect feature changes
- Loading branch information
Showing
30 changed files
with
486 additions
and
62 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 |
---|---|---|
@@ -1,2 +1,3 @@ | ||
argocd/tmp-argocd-app-patch.yaml | ||
bootstrap/test.yaml | ||
bootstrap/test.yaml | ||
install.sh |
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 was deleted.
Oops, something went wrong.
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
71 changes: 68 additions & 3 deletions
71
bootstrap/roles/ocp4-install-noobaa/tasks/noobaa-create.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
11 changes: 11 additions & 0 deletions
11
bootstrap/roles/ocp4-install-noobaa/templates/ocs-subscription.yaml.j2
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,11 @@ | ||
apiVersion: operators.coreos.com/v1alpha1 | ||
kind: Subscription | ||
metadata: | ||
name: ocs-operator | ||
namespace: openshift-storage | ||
spec: | ||
channel: {{ ocp4_channel }} | ||
installPlanApproval: Automatic | ||
name: ocs-operator | ||
source: redhat-operators | ||
sourceNamespace: openshift-marketplace |
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
8 changes: 8 additions & 0 deletions
8
bootstrap/roles/ocp4-install-noobaa/templates/operatorgroup-storage.yaml.j2
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 @@ | ||
apiVersion: operators.coreos.com/v1 | ||
kind: OperatorGroup | ||
metadata: | ||
name: openshift-storage-test | ||
namespace: openshift-storage | ||
spec: | ||
targetNamespaces: | ||
- openshift-storage |
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
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
47 changes: 47 additions & 0 deletions
47
bootstrap/roles/ocp4-install-signing/files/policies/signed-image-policy.json
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,47 @@ | ||
{ | ||
"policies": [ | ||
{ | ||
"id": "c8fde2c3-980c-40e3-bc9d-6245b13ab81e", | ||
"name": "Trusted_Signature_Image_Policy", | ||
"description": "Alert on Images that have not been signed", | ||
"rationale": "rationale", | ||
"remediation": "All images should be signed by our cosign-demo signature", | ||
"disabled": false, | ||
"categories": [ | ||
"Security Best Practices" | ||
], | ||
"lifecycleStages": [ | ||
"BUILD", | ||
"DEPLOY" | ||
], | ||
"severity": "HIGH_SEVERITY", | ||
"enforcementActions": [], | ||
"notifiers": [], | ||
"SORTName": "", | ||
"SORTLifecycleStage": "", | ||
"SORTEnforcement": false, | ||
"policyVersion": "1.1", | ||
"policySections": [ | ||
{ | ||
"sectionName": "Policy Section 1", | ||
"policyGroups": [ | ||
{ | ||
"fieldName": "Image Signature Verified By", | ||
"booleanOperator": "OR", | ||
"negate": false, | ||
"values": [ | ||
{ | ||
"value": "io.stackrox.signatureintegration.f9352803-d5c9-45d6-abe0-e1361a24559a" | ||
} | ||
] | ||
} | ||
] | ||
} | ||
], | ||
"mitreAttackVectors": [], | ||
"criteriaLocked": false, | ||
"mitreVectorsLocked": false, | ||
"isDefault": false | ||
} | ||
] | ||
} |
Empty file.
Oops, something went wrong.