-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Red Hat Advanced Cluster Security
Adding the deployment, and basic configuration, if the Central instance, as well as scanners.
- Loading branch information
Showing
6 changed files
with
194 additions
and
2 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
69 changes: 69 additions & 0 deletions
69
charts/rhtap-backing-services/templates/openshift-acs/acs-central.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,69 @@ | ||
{{- if .Values.backingServices.acs.enabled -}} | ||
{{- $acs := .Values.backingServices.acs -}} | ||
--- | ||
apiVersion: platform.stackrox.io/v1alpha1 | ||
kind: Central | ||
metadata: | ||
labels: | ||
app: acs | ||
namespace: {{ | ||
required ".backingServicews.acs.namespace is required" $acs.namespace | ||
}} | ||
name: {{ | ||
required ".backingServices.acs.name is required" $acs.name | ||
}} | ||
spec: | ||
monitoring: | ||
openshift: | ||
enabled: true | ||
central: | ||
db: | ||
isEnabled: Default | ||
persistence: | ||
persistentVolumeClaim: | ||
claimName: central-db | ||
resources: {{- | ||
required ".backingServices.acs.central.db.resources is required" | ||
$acs.central.db.resources | toYaml | nindent 8 | ||
}} | ||
exposure: | ||
loadBalancer: | ||
enabled: false | ||
port: 443 | ||
nodePort: | ||
enabled: false | ||
route: | ||
enabled: true | ||
notifierSecretsEncryption: | ||
enabled: false | ||
persistence: | ||
persistentVolumeClaim: | ||
claimName: stackrox-db | ||
resources: {{- | ||
required ".backingServices.acs.central.resources is required" | ||
$acs.central.resources | toYaml | nindent 6 | ||
}} | ||
telemetry: | ||
enabled: true | ||
egress: | ||
connectivityPolicy: Online | ||
scannerV4: | ||
db: | ||
persistence: | ||
persistentVolumeClaim: | ||
claimName: scanner-v4-db | ||
indexer: {{- | ||
required ".backingServices.acs.scanners.indexer is required" | ||
$acs.scanners.indexer | toYaml | nindent 6 | ||
}} | ||
matcher: {{- | ||
required ".backingServices.acs.scanners.matcher is required" | ||
$acs.scanners.matcher | toYaml | nindent 6 | ||
}} | ||
scannerComponent: Default | ||
scanner: | ||
analyzer: {{- | ||
required ".backingServices.acs.scanners.analyzer is required" | ||
$acs.scanners.analyzer | toYaml | nindent 6 | ||
}} | ||
{{- end }} |
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