-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
2.8.0: ACR scan support, AC assessment history, improve for 1.19+ (#71)
IA 2.0.0: add ACR scan support AC policy 1.0.1, AC enforcer 1.2.2: collect data for verification AC GSL: build based on newer based image remove deprecated objects so there will be no warnings
- Loading branch information
1 parent
e13e128
commit 7195358
Showing
15 changed files
with
166 additions
and
88 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
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
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
25 changes: 25 additions & 0 deletions
25
checkpoint/cloudguard/templates/imagescan/engine/configmap-registry.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,25 @@ | ||
{{- $config := fromYaml (include "imagescan.engine.config" .) -}} | ||
{{- if $config.featureConfig.registryEnvId -}} | ||
apiVersion: v1 | ||
kind: ConfigMap | ||
metadata: | ||
name: {{ .Release.Name }}-cp-cloudguard-registries | ||
namespace: {{ .Release.Namespace }} | ||
labels: | ||
{{ include "common.labels.with.chart" $config | indent 4 }} | ||
data: | ||
registries: | | ||
{ | ||
"config": { | ||
"requestMaxPages": {{ $config.featureConfig.registryRequestMaxPages | default 1000 }}, | ||
"requestMaxItemsPerPage": {{ $config.featureConfig.registryRequestMaxItemsPerPage | default 0 }} | ||
}, | ||
"envs": [{ | ||
"url": "{{ $config.featureConfig.registryUrl }}", | ||
"id": "{{ $config.featureConfig.registryEnvId }}", | ||
"type": "{{ $config.featureConfig.registryType }}", | ||
"clientId": "{{ $config.featureConfig.registryClientId }}", | ||
"tenantId": "{{ $config.featureConfig.registryTenantId }}" | ||
}] | ||
} | ||
{{- end -}} |
Oops, something went wrong.