diff --git a/checkpoint/cloudguard/Chart.yaml b/checkpoint/cloudguard/Chart.yaml index d882d58d..2bb0586b 100644 --- a/checkpoint/cloudguard/Chart.yaml +++ b/checkpoint/cloudguard/Chart.yaml @@ -1,5 +1,5 @@ apiVersion: v2 -appVersion: 2.28.0 +appVersion: 2.29.0 description: A Helm chart for Check Point CloudGuard Workload Security home: https://portal.checkpoint.com icon: https://www.checkpoint.com/wp-content/uploads/icon-cloudguard-nav.png @@ -34,4 +34,4 @@ keywords: - gke - autopilot name: cloudguard -version: 2.28.0 +version: 2.29.0 diff --git a/checkpoint/cloudguard/README.md b/checkpoint/cloudguard/README.md index 22a6a228..7bfcf1ec 100644 --- a/checkpoint/cloudguard/README.md +++ b/checkpoint/cloudguard/README.md @@ -192,6 +192,17 @@ The following table list the configurable parameters of this chart and their def | `addons.imageScan.list.tolerations` | List of node taints to tolerate | `[]` | | `addons.imageScan.list.affinity` | Affinity setting | `{}` | | `addons.imageScan.list.podAnnotations.custom` | Custom Pod annotations (for Pods of this agent) | `{}` | +| `addons.imageScan.armon.enabled` | Specifies whether the Image Access Runtime Monitor addon should be installed | `false` | +| `addons.imageScan.armon.image` | Specify image for the agent | `checkpoint/consec-imagescan-armon` | +| `addons.imageScan.armon.tag` | Specify image tag for the agent | see defaults.yaml | +| `addons.imageScan.armon.serviceAccountName` | Specify custom Service Account for the agent | `` | +| `addons.imageScan.armon.env` | Additional environmental variables for the agent | `{}` | +| `addons.imageScan.armon.resources` | Resources restriction (e.g. CPU, memory) | see defaults.yaml | +| `addons.imageScan.armon.nodeSelector` | Node labels for pod assignment | see below | +| `addons.imageScan.armon.tolerations` | List of node taints to tolerate | `operator: Exists` | +| `addons.imageScan.armon.affinity` | Affinity setting | see below | +| `addons.imageScan.armon.podAnnotations.custom` | Custom Pod annotations (for Pods of this agent) | `{}` | +| `addons.imageScan.armon.priorityClassName` | Specifies custom priorityClassName (for Pods of this daemonset) | `system-node-critical` | | `addons.imageScan.daemonConfigurationOverrides` | Overrides for multiple daemonSets with different configuration values | see below | | `addons.flowLogs.enabled` | Specifies whether the Flow Logs addon should be installed | `false` | | `addons.flowLogs.priorityClassName` | Specifies custom priorityClassName | `system-cluster-critical` | diff --git a/checkpoint/cloudguard/defaults.yaml b/checkpoint/cloudguard/defaults.yaml index 65423993..ec4876a2 100755 --- a/checkpoint/cloudguard/defaults.yaml +++ b/checkpoint/cloudguard/defaults.yaml @@ -107,6 +107,7 @@ addons: enabled: false mountPodman : false priorityClassName: "system-cluster-critical" + daemon: priorityClassName: "system-node-critical" ## Specify image and tag @@ -230,6 +231,42 @@ addons: podAnnotations: custom: {} + # Image Access Runtime Monitor + armon: + enabled: false + priorityClassName: "system-node-critical" + ## Specify image and tag + image: checkpoint/consec-imagescan-armon + tag: 0.1.2 + + ## Specify existing service account name ("" to create) + serviceAccountName: "" + + + ## Extra environment variables passed to the container + env: [] + + ## Configure resource requests and limits + ## ref: http://kubernetes.io/docs/user-guide/compute-resources/ + resources: + requests: + cpu: 100m + memory: 500Mi + limits: + cpu: 100m + memory: 500Mi + + ## Configuration options for nodeSelector, tolerations and affinity for pod + ## ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/ + nodeSelector: + kubernetes.io/os: linux + kubernetes.io/arch: amd64 + tolerations: + - operator: Exists + affinity: {} + podAnnotations: + custom: {} + ## Flow Logs Add-on flowLogs: @@ -351,7 +388,7 @@ addons: ## Main container settings ## Specify image and tag image: checkpoint/consec-runtime-daemon - tag: 1.14.0 + tag: 1.16.2 ## Specify existing service account name ("" to create) serviceAccountName: "" diff --git a/checkpoint/cloudguard/templates/imagescan/armon/_helpers.tpl b/checkpoint/cloudguard/templates/imagescan/armon/_helpers.tpl new file mode 100644 index 00000000..23bc6aa4 --- /dev/null +++ b/checkpoint/cloudguard/templates/imagescan/armon/_helpers.tpl @@ -0,0 +1,10 @@ +{{- define "imagescan.armon.config" -}} +{{- $config := (include "get.root" .) | fromYaml -}} +{{- $_ := set $config "featureName" "imagescan" -}} +{{- $_ := set $config "agentName" "armon" -}} +{{- $_ := set $config "featureConfig" $config.Values.addons.imageScan -}} +{{- /* special Case for fileaccess daemonSet name to be different than daemon*/ -}} +{{- $_ := set $config "daemonConfigName" "armon" -}} +{{- $_ := set $config "agentConfig" $config.Values.addons.imageScan.armon -}} +{{- $config | toYaml -}} +{{- end -}} diff --git a/checkpoint/cloudguard/templates/imagescan/armon/clusterrole.yaml b/checkpoint/cloudguard/templates/imagescan/armon/clusterrole.yaml new file mode 100644 index 00000000..43927482 --- /dev/null +++ b/checkpoint/cloudguard/templates/imagescan/armon/clusterrole.yaml @@ -0,0 +1,22 @@ +{{- $config := fromYaml (include "imagescan.armon.config" .) -}} +{{- if and $config.featureConfig.enabled $config.agentConfig.enabled -}} +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRole +metadata: + name: {{ template "agent.resource.name" $config }} + namespace: {{ .Release.Namespace }} + labels: +{{ include "common.labels.with.chart" $config | indent 4 }} +rules: +- apiGroups: [""] + resources: [ "pods", "nodes"] + verbs: [ "list", "get" ] + +- apiGroups: ["apps"] + resources: [ "daemonsets", "deployments", "replicasets", "statefulsets"] + verbs: [ "list", "get" ] + +- apiGroups: [ "batch" ] + resources: [ "jobs", "cronjobs" ] + verbs: [ "list", "get" ] +{{- end -}} diff --git a/checkpoint/cloudguard/templates/imagescan/armon/clusterrolebinding.yaml b/checkpoint/cloudguard/templates/imagescan/armon/clusterrolebinding.yaml new file mode 100644 index 00000000..fc5a79d4 --- /dev/null +++ b/checkpoint/cloudguard/templates/imagescan/armon/clusterrolebinding.yaml @@ -0,0 +1,18 @@ +{{- $config := fromYaml (include "imagescan.armon.config" .) -}} +{{- if and $config.featureConfig.enabled $config.agentConfig.enabled -}} +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRoleBinding +metadata: + name: {{ template "agent.resource.name" $config }} + namespace: {{ .Release.Namespace }} + labels: +{{ include "common.labels.with.chart" $config | indent 4 }} +roleRef: + apiGroup: rbac.authorization.k8s.io + kind: ClusterRole + name: {{ template "agent.resource.name" $config }} +subjects: +- kind: ServiceAccount + name: {{ template "agent.service.account.name" $config }} + namespace: {{ .Release.Namespace }} +{{- end -}} diff --git a/checkpoint/cloudguard/templates/imagescan/armon/daemonset.yaml b/checkpoint/cloudguard/templates/imagescan/armon/daemonset.yaml new file mode 100644 index 00000000..619a4465 --- /dev/null +++ b/checkpoint/cloudguard/templates/imagescan/armon/daemonset.yaml @@ -0,0 +1,96 @@ +{{- $config := fromYaml (include "imagescan.armon.config" .) -}} +{{- /* Make ".Files" of the chart accessible and properly formatted when accessed via $config' */ -}} +{{- $_ := set $config "Files" $.Files -}} +{{- if and $config.featureConfig.enabled $config.agentConfig.enabled -}} +apiVersion: apps/v1 +kind: DaemonSet +metadata: + name: {{ include "daemonset.daemon.resource.name" $config }} + namespace: {{ $.Release.Namespace }} + labels: +{{ include "common.labels.with.chart" $config | indent 4 }} +spec: + selector: + matchLabels: +{{ include "common.labels" $config | indent 6 }} +{{ include "daemonset.updateStrategy" $config | indent 2}} + template: + metadata: + annotations: +{{ include "common.pod.annotations" $config | indent 8 }} + labels: +{{ include "common.labels" $config | indent 8 }} + spec: +{{ include "common.pod.properties" $config | indent 6 }} + containers: + - name: {{ $config.agentName }} + image: {{ template "agent.main.image" $config }} + imagePullPolicy: {{ $config.Values.imagePullPolicy }} + securityContext: + {{- if contains "openshift" $config.platform }} + seLinuxOptions: + type: spc_t + {{- end }} + runAsUser: 0 + capabilities: + add: + - SYS_RESOURCE # setrlimit + - SYS_ADMIN # bpf + - IPC_LOCK # lock memory for bpf kernel >= 5.11 + volumeMounts: + - name: secret-volume + mountPath: /etc/secret-volume + {{- if eq $config.containerRuntime "docker" }} + - mountPath: /var/run/docker.sock + name: docker-sock + readOnly: true + {{- else if eq $config.containerRuntime "containerd" }} + - mountPath: /run/containerd/containerd.sock + name: containerd-sock + readOnly: true + {{- else if eq $config.containerRuntime "cri-o" }} + - mountPath: /var/run/crio/crio.sock + name: crio-sock + readOnly: true + {{- end }} +{{- if $config.agentConfig.resources }} + resources: +{{ toYaml $config.agentConfig.resources | indent 10 }} +{{- end }} + env: + - name: REPORT_USE_DOME9_AGENT_CFG + value: "1" + - name: "REPORT_POST_ENDPOINT" + value: "/imageaccessruntimemonitor" + - name: "TELEMETRY_URL" + value: "https://eptelemetry.epmgmt.checkpoint.com/gwstats/services/antimalware/1_0_0/log" + - name: "CONTAINERS_RUNTIME" + value: {{ $config.containerRuntime }} + +{{ include "common.env" $config | indent 8 }} + volumes: + - name: secret-volume + secret: + secretName: {{ template "cg.creds.secret.name" $config }} + {{- if eq $config.containerRuntime "docker" }} + - name: docker-sock + hostPath: + {{- if eq $config.platform "tanzu" }} + path: /var/vcap/sys/run/docker/docker.sock + {{- else }} + path: /var/run/docker.sock + {{- end }} + type: Socket + {{- else if eq $config.containerRuntime "containerd" }} + - name: containerd-sock + hostPath: + path: {{ include "containerd.sock.path" $config }} + type: Socket + {{- else if eq $config.containerRuntime "cri-o" }} + - name: crio-sock + hostPath: + path: /run/crio/crio.sock + type: Socket + {{- end }} +--- +{{- end -}} diff --git a/checkpoint/cloudguard/templates/imagescan/armon/role.yaml b/checkpoint/cloudguard/templates/imagescan/armon/role.yaml new file mode 100644 index 00000000..0c42d1f6 --- /dev/null +++ b/checkpoint/cloudguard/templates/imagescan/armon/role.yaml @@ -0,0 +1,21 @@ +{{- $config := fromYaml (include "imagescan.armon.config" .) -}} +{{- if and $config.featureConfig.enabled $config.agentConfig.enabled -}} +{{- if (contains "openshift" $config.platform) -}} +apiVersion: rbac.authorization.k8s.io/v1 +kind: Role +metadata: + name: {{ template "agent.resource.name" $config }} + namespace: {{ .Release.Namespace }} + labels: +{{ include "common.labels.with.chart" $config | indent 4 }} +rules: +- apiGroups: + - security.openshift.io + resourceNames: + - {{ template "agent.resource.name" $config }} + resources: + - securitycontextconstraints + verbs: + - use +{{- end -}} +{{- end -}} \ No newline at end of file diff --git a/checkpoint/cloudguard/templates/imagescan/armon/rolebinding.yaml b/checkpoint/cloudguard/templates/imagescan/armon/rolebinding.yaml new file mode 100644 index 00000000..fd2046e0 --- /dev/null +++ b/checkpoint/cloudguard/templates/imagescan/armon/rolebinding.yaml @@ -0,0 +1,20 @@ +{{- $config := fromYaml (include "imagescan.armon.config" .) -}} +{{- if and $config.featureConfig.enabled $config.agentConfig.enabled -}} +{{- if (contains "openshift" $config.platform) -}} +apiVersion: rbac.authorization.k8s.io/v1 +kind: RoleBinding +metadata: + name: {{ template "agent.resource.name" $config }} + namespace: {{ .Release.Namespace }} + labels: +{{ include "common.labels.with.chart" $config | indent 4 }} +roleRef: + apiGroup: rbac.authorization.k8s.io + kind: Role + name: {{ template "agent.resource.name" $config }} +subjects: +- kind: ServiceAccount + name: {{ template "agent.service.account.name" $config }} + namespace: {{ .Release.Namespace }} +{{- end -}} +{{- end -}} \ No newline at end of file diff --git a/checkpoint/cloudguard/templates/imagescan/armon/securitycontextconstraints.yaml b/checkpoint/cloudguard/templates/imagescan/armon/securitycontextconstraints.yaml new file mode 100644 index 00000000..7e48ad27 --- /dev/null +++ b/checkpoint/cloudguard/templates/imagescan/armon/securitycontextconstraints.yaml @@ -0,0 +1,31 @@ +{{- $config := fromYaml (include "imagescan.armon.config" .) -}} +{{- if and $config.featureConfig.enabled $config.agentConfig.enabled -}} +{{- if (contains "openshift" $config.platform) -}} +apiVersion: security.openshift.io/v1 +kind: SecurityContextConstraints +metadata: + name: {{ template "agent.resource.name" $config }} + namespace: {{ .Release.Namespace }} + labels: +{{ include "common.labels.with.chart" $config | indent 4 }} +allowPrivilegedContainer: false +allowHostDirVolumePlugin: true +runAsUser: + type: RunAsAny +seLinuxContext: + type: RunAsAny +fsGroup: + type: RunAsAny +supplementalGroups: + type: RunAsAny +users: + - system:serviceaccount +allowedCapabilities: + - SYS_RESOURCE + - SYS_ADMIN + - IPC_LOCK +volumes: + - hostPath + - secret +{{- end -}} +{{- end -}} diff --git a/checkpoint/cloudguard/templates/imagescan/armon/serviceaccount.yaml b/checkpoint/cloudguard/templates/imagescan/armon/serviceaccount.yaml new file mode 100644 index 00000000..e08590bb --- /dev/null +++ b/checkpoint/cloudguard/templates/imagescan/armon/serviceaccount.yaml @@ -0,0 +1,10 @@ +{{- $config := fromYaml (include "imagescan.armon.config" .) -}} +{{- if and $config.featureConfig.enabled $config.agentConfig.enabled (not $config.agentConfig.serviceAccountName) -}} +apiVersion: v1 +kind: ServiceAccount +metadata: + name: {{ template "agent.resource.name" $config }} + namespace: {{ .Release.Namespace }} + labels: +{{ include "common.labels.with.chart" $config | indent 4 }} +{{- end -}} diff --git a/repository/cloudguard-2.29.0.tgz b/repository/cloudguard-2.29.0.tgz new file mode 100644 index 00000000..1fba37af Binary files /dev/null and b/repository/cloudguard-2.29.0.tgz differ diff --git a/repository/index.yaml b/repository/index.yaml index a3463a1f..e4c3a083 100644 --- a/repository/index.yaml +++ b/repository/index.yaml @@ -1,9 +1,50 @@ apiVersion: v1 entries: cloudguard: + - apiVersion: v2 + appVersion: 2.29.0 + created: "2024-04-04T11:51:47.847010365Z" + description: A Helm chart for Check Point CloudGuard Workload Security + digest: e9607e5835ff4cdca93b5a2a2dd5b55d3040270536f757f6a8f58f7c46505c28 + home: https://portal.checkpoint.com + icon: https://www.checkpoint.com/wp-content/uploads/icon-cloudguard-nav.png + keywords: + - check point + - cloudguard + - workload security + - inventory + - posture management + - vulnerability assessment + - image assurance + - flow logs + - threat intelligence + - admission control + - runtime protection + - registry scan + - acr + - ecr + - gcr + - gar + - harbor + - jfrog artifactory + - sonatype nexus + - ghcr + - github container registry + - ecs + - tanzu + - k3s + - openshift + - eks + - aks + - gke + - autopilot + name: cloudguard + urls: + - https://raw.githubusercontent.com/CheckPointSW/charts/master/repository/cloudguard-2.29.0.tgz + version: 2.29.0 - apiVersion: v2 appVersion: 2.29.0-rp.1 - created: "2024-03-17T11:49:58.280051773Z" + created: "2024-04-04T11:51:47.845321131Z" description: A Helm chart for Check Point CloudGuard Workload Security digest: 60f18702354ba0b61d375b816b8f02747cf43ecfa3ec45bebdd8e8e78085a3d9 home: https://portal.checkpoint.com @@ -44,7 +85,7 @@ entries: version: 2.29.0-rp.1 - apiVersion: v2 appVersion: 2.28.0 - created: "2024-03-17T11:49:58.278104558Z" + created: "2024-04-04T11:51:47.843531802Z" description: A Helm chart for Check Point CloudGuard Workload Security digest: d2e5ac2a321c7ab0ce1a2a10f0ea277a2d36aefcb24a52ef82bf00672e56e9f8 home: https://portal.checkpoint.com @@ -85,7 +126,7 @@ entries: version: 2.28.0 - apiVersion: v2 appVersion: 2.27.1 - created: "2024-03-17T11:49:58.276145021Z" + created: "2024-04-04T11:51:47.841318174Z" description: A Helm chart for Check Point CloudGuard Workload Security digest: cadce80cf1b286df2e584bdb8bd33ab592f8292c16d9a9a44457339cdf6c6cd6 home: https://portal.checkpoint.com @@ -124,7 +165,7 @@ entries: version: 2.27.1 - apiVersion: v2 appVersion: 2.27.0 - created: "2024-03-17T11:49:58.271406431Z" + created: "2024-04-04T11:51:47.837998585Z" description: A Helm chart for Check Point CloudGuard Workload Security digest: 67eb92e2a8b4d7df1d9cba289395a5d8609d00226f5ac521e546cce49bf2b57a home: https://portal.checkpoint.com @@ -163,7 +204,7 @@ entries: version: 2.27.0 - apiVersion: v2 appVersion: 2.26.0 - created: "2024-03-17T11:49:58.269614985Z" + created: "2024-04-04T11:51:47.835975722Z" description: A Helm chart for Check Point CloudGuard Workload Security digest: 40bb805906a9afd948bd867eb62254a243df3d1d69aa46cbb60dc8234e2a770d home: https://portal.checkpoint.com @@ -202,7 +243,7 @@ entries: version: 2.26.0 - apiVersion: v2 appVersion: 2.25.0 - created: "2024-03-17T11:49:58.267841813Z" + created: "2024-04-04T11:51:47.834308879Z" description: A Helm chart for Check Point CloudGuard Workload Security digest: 4a01d5f08a2c32b7b08116f9dd0a2fc3719f2fe63048d0bd79442425b01ecd64 home: https://portal.checkpoint.com @@ -241,7 +282,7 @@ entries: version: 2.25.0 - apiVersion: v2 appVersion: 2.24.3 - created: "2024-03-17T11:49:58.266064914Z" + created: "2024-04-04T11:51:47.832662554Z" description: A Helm chart for Check Point CloudGuard Workload Security digest: c0017cffd7a43f920636d6c59dffc48b2c075f824dc8b2f124d9cf95380e562c home: https://portal.checkpoint.com @@ -280,7 +321,7 @@ entries: version: 2.24.3 - apiVersion: v2 appVersion: 2.23.0 - created: "2024-03-17T11:49:58.264303594Z" + created: "2024-04-04T11:51:47.831003917Z" description: A Helm chart for Check Point CloudGuard Workload Security digest: a206fa0dcd03857dc9806d0991a325989e03356f75c34d76891beae280c847ec home: https://portal.checkpoint.com @@ -318,7 +359,7 @@ entries: version: 2.23.0 - apiVersion: v2 appVersion: 2.22.0 - created: "2024-03-17T11:49:58.262535712Z" + created: "2024-04-04T11:51:47.829298763Z" description: A Helm chart for Check Point CloudGuard Workload Security digest: 0aab618cb7466eeca9a13bd5d27253fa466c91eadc71689833a20480286aa5b8 home: https://portal.checkpoint.com @@ -356,7 +397,7 @@ entries: version: 2.22.0 - apiVersion: v2 appVersion: 2.21.0 - created: "2024-03-17T11:49:58.260766998Z" + created: "2024-04-04T11:51:47.826101771Z" description: A Helm chart for Check Point CloudGuard Workload Security digest: 9a3e7e51abfc946d26719dc0a51b2d25cb76ac588e68b2369eed5c92772e74f4 home: https://portal.checkpoint.com @@ -394,7 +435,7 @@ entries: version: 2.21.0 - apiVersion: v2 appVersion: 2.20.0 - created: "2024-03-17T11:49:58.257119998Z" + created: "2024-04-04T11:51:47.82456509Z" description: A Helm chart for Check Point CloudGuard Workload Security digest: 3c14983786e940b675fdb23ae5eeb4489a76ec78d93e48f3943967394bd95e7f home: https://portal.checkpoint.com @@ -428,7 +469,7 @@ entries: version: 2.20.0 - apiVersion: v2 appVersion: 2.19.1 - created: "2024-03-17T11:49:58.255450718Z" + created: "2024-04-04T11:51:47.823012099Z" description: A Helm chart for Check Point CloudGuard Workload Security digest: e06900fa593bfa8929fc0fc0b87c6f12de49125f7b95157ab3b50bd48954d060 home: https://portal.checkpoint.com @@ -462,7 +503,7 @@ entries: version: 2.19.1 - apiVersion: v2 appVersion: 2.18.0 - created: "2024-03-17T11:49:58.253629317Z" + created: "2024-04-04T11:51:47.821253576Z" description: A Helm chart for Check Point CloudGuard Workload Security digest: 94d9f8ead188778c6c37fdf594aff9c057e5f7adc3a7f98a012a780e72d40ce0 home: https://portal.checkpoint.com @@ -496,7 +537,7 @@ entries: version: 2.18.0 - apiVersion: v2 appVersion: 2.17.0 - created: "2024-03-17T11:49:58.25182114Z" + created: "2024-04-04T11:51:47.819236434Z" description: A Helm chart for Check Point CloudGuard Workload Security digest: d03556e294650b4c655131c3c8fd4885ea173678441c0966e3eaace09b64973b home: https://portal.checkpoint.com @@ -523,7 +564,7 @@ entries: version: 2.17.0 - apiVersion: v2 appVersion: 2.16.0 - created: "2024-03-17T11:49:58.250036006Z" + created: "2024-04-04T11:51:47.81722966Z" description: A Helm chart for Check Point CloudGuard Workload Security digest: a6e08b3eddc8de558dbadf766ae159e4f303ab6c4280858b6943b607f73c4ac7 home: https://portal.checkpoint.com @@ -550,7 +591,7 @@ entries: version: 2.16.0 - apiVersion: v2 appVersion: 2.15.1 - created: "2024-03-17T11:49:58.248298851Z" + created: "2024-04-04T11:51:47.8151115Z" description: A Helm chart for Check Point CloudGuard Workload Security digest: 095c93751144ae2369a107e9b7a66010ea2dccdc1bcd90a9d871a39d6765940e home: https://portal.checkpoint.com @@ -577,7 +618,7 @@ entries: version: 2.15.1 - apiVersion: v2 appVersion: 2.15.0 - created: "2024-03-17T11:49:58.24636925Z" + created: "2024-04-04T11:51:47.812599108Z" description: A Helm chart for Check Point CloudGuard Workload Security digest: 1ce7e7428b102a3d0d045757d21090ba9240c9cd3dce7bdce49297ffa450c7f9 home: https://portal.checkpoint.com @@ -604,7 +645,7 @@ entries: version: 2.15.0 - apiVersion: v2 appVersion: 2.14.1 - created: "2024-03-17T11:49:58.242600955Z" + created: "2024-04-04T11:51:47.810537052Z" description: A Helm chart for Check Point CloudGuard Workload Security digest: 3011a8d3e68701633517fe681a1cd3db2179521ab142de3539187952399aafd9 home: https://portal.checkpoint.com @@ -631,7 +672,7 @@ entries: version: 2.14.1 - apiVersion: v2 appVersion: 2.13.0 - created: "2024-03-17T11:49:58.240643201Z" + created: "2024-04-04T11:51:47.808650482Z" description: A Helm chart for Check Point CloudGuard Workload Security digest: 3a5d459726cf07b6bd4ffdbb8d2c1398c64f6ebf683607b6ee20b55317641e8c home: https://portal.checkpoint.com @@ -658,7 +699,7 @@ entries: version: 2.13.0 - apiVersion: v2 appVersion: 2.11.1 - created: "2024-03-17T11:49:58.23875682Z" + created: "2024-04-04T11:51:47.806753723Z" description: A Helm chart for Check Point CloudGuard Workload Security digest: a82065c05b0d37f94465afb5d817381012467884777ea72e8532fe7d3d82c191 home: https://portal.checkpoint.com @@ -683,7 +724,7 @@ entries: version: 2.11.1 - apiVersion: v2 appVersion: 2.10.2 - created: "2024-03-17T11:49:58.236998185Z" + created: "2024-04-04T11:51:47.804854919Z" description: A Helm chart for Check Point CloudGuard Workload Security digest: a6a6319c0d0d3f2f2e82aab3b4816be230ccec6a09a8f5c5f12dd4c1b62c0c7b home: https://portal.checkpoint.com @@ -708,7 +749,7 @@ entries: version: 2.10.2 - apiVersion: v2 appVersion: 2.10.1 - created: "2024-03-17T11:49:58.235110551Z" + created: "2024-04-04T11:51:47.802868404Z" description: A Helm chart for Check Point CloudGuard Workload Security digest: 2cdae3abc9f2988a1fb426707f24ec0f459ddb7b8b780b6e8c2ab9ba6308d083 home: https://portal.checkpoint.com @@ -733,7 +774,7 @@ entries: version: 2.10.1 - apiVersion: v2 appVersion: 2.10.0 - created: "2024-03-17T11:49:58.233152697Z" + created: "2024-04-04T11:51:47.800779918Z" description: A Helm chart for Check Point CloudGuard Workload Security digest: 6360f519190507ee4f004a47e395416b514da4815b0f8f32ba52704b81da87c4 home: https://portal.checkpoint.com @@ -758,7 +799,7 @@ entries: version: 2.10.0 - apiVersion: v2 appVersion: 2.9.0 - created: "2024-03-17T11:49:58.300591319Z" + created: "2024-04-04T11:51:47.870299938Z" description: A Helm chart for Check Point CloudGuard Workload Security digest: 0aa40700951df79c8eb3ba5fff812eeb608f1a1b5e77d6cdd5fb855b19579314 home: https://portal.checkpoint.com @@ -783,7 +824,7 @@ entries: version: 2.9.0 - apiVersion: v2 appVersion: 2.8.1 - created: "2024-03-17T11:49:58.298899107Z" + created: "2024-04-04T11:51:47.868097662Z" description: A Helm chart for Check Point CloudGuard Workload Security digest: b3c53cf2771aeee0e46f97b71be765da2a762c6fc042d89c12a5f3ae8b436e82 home: https://portal.checkpoint.com @@ -808,7 +849,7 @@ entries: version: 2.8.1 - apiVersion: v2 appVersion: 2.8.0 - created: "2024-03-17T11:49:58.297233765Z" + created: "2024-04-04T11:51:47.86522944Z" description: A Helm chart for Check Point CloudGuard Workload Security digest: 2335d07e6aea36d4ac4c899566d45ea77c1c362684b07dbf18ed9069fa612b06 home: https://portal.checkpoint.com @@ -833,7 +874,7 @@ entries: version: 2.8.0 - apiVersion: v2 appVersion: 2.5.2 - created: "2024-03-17T11:49:58.295528749Z" + created: "2024-04-04T11:51:47.863652354Z" description: A Helm chart for Check Point CloudGuard Workload Security digest: d070425b0eea904623b5ffa76094c4cea6e0fac63463245f6f62f3e964ff6294 home: https://portal.checkpoint.com @@ -856,7 +897,7 @@ entries: version: 2.5.2 - apiVersion: v2 appVersion: 2.5.1 - created: "2024-03-17T11:49:58.294080188Z" + created: "2024-04-04T11:51:47.862318038Z" description: A Helm chart for Check Point CloudGuard Workload Security digest: 85b711c72dc3f8ba29fe9552b3bff97bf88a2ad8fc882c9df03e693caaf05dfe home: https://portal.checkpoint.com @@ -879,7 +920,7 @@ entries: version: 2.5.1 - apiVersion: v2 appVersion: 2.5.0 - created: "2024-03-17T11:49:58.292630174Z" + created: "2024-04-04T11:51:47.86067508Z" description: A Helm chart for Check Point CloudGuard Workload Security digest: 6528eb362aa01300ca43c695759df035b7d8657930ccc9472272cf55d76ef3ed home: https://portal.checkpoint.com @@ -902,7 +943,7 @@ entries: version: 2.5.0 - apiVersion: v2 appVersion: 2.4.0 - created: "2024-03-17T11:49:58.291137922Z" + created: "2024-04-04T11:51:47.858991546Z" description: A Helm chart for Check Point CloudGuard Workload Security digest: 766b3224138ad56b9825e52aa1c3a1d14d9fb37e0aa2ce4a962bb5846fb4eb44 home: https://portal.checkpoint.com @@ -925,7 +966,7 @@ entries: version: 2.4.0 - apiVersion: v2 appVersion: 2.3.5 - created: "2024-03-17T11:49:58.289216696Z" + created: "2024-04-04T11:51:47.85722563Z" description: A Helm chart for Check Point CloudGuard Workload Security digest: 47195d99813fa84d1ff3b552dabc067183f354d4353a3c55bea8b4bf053750af home: https://secure.dome9.com/v2/ @@ -951,7 +992,7 @@ entries: version: 2.3.5 - apiVersion: v2 appVersion: 2.3.3 - created: "2024-03-17T11:49:58.286996136Z" + created: "2024-04-04T11:51:47.853293423Z" description: A Helm chart for Check Point CloudGuard Workload Security digest: 7e8ecac90cc603f7e83507358b67647ebffbee078ce5c79e2d25bad4be69d78a home: https://secure.dome9.com/v2/ @@ -977,7 +1018,7 @@ entries: version: 2.3.3 - apiVersion: v2 appVersion: 2.3.2 - created: "2024-03-17T11:49:58.285516317Z" + created: "2024-04-04T11:51:47.851878989Z" description: A Helm chart for Check Point CloudGuard Workload Security digest: 81a7be75584877e4373be4fd2ef1dd11d111cc4d9964007c40ea610dc652a4d1 home: https://secure.dome9.com/v2/ @@ -1003,7 +1044,7 @@ entries: version: 2.3.2 - apiVersion: v2 appVersion: 2.3.1 - created: "2024-03-17T11:49:58.283943045Z" + created: "2024-04-04T11:51:47.850601198Z" description: A Helm chart for Check Point CloudGuard Workload Security digest: 91fbc7b612a6cf21abe69e40ac3b8459cb8eb46ebe4245a1c583b99515c9e5a4 home: https://secure.dome9.com/v2/ @@ -1029,7 +1070,7 @@ entries: version: 2.3.1 - apiVersion: v2 appVersion: 2.3.0 - created: "2024-03-17T11:49:58.282454329Z" + created: "2024-04-04T11:51:47.84917358Z" description: A Helm chart for Check Point CloudGuard Workload Security digest: 8be89cebf15b52831dab2c86495f61c1e11d8054a37d5dedb33cbedd5f18dcef home: https://secure.dome9.com/v2/ @@ -1056,7 +1097,7 @@ entries: cp-resource-management: - apiVersion: v1 appVersion: 1.11.0 - created: "2024-03-17T11:49:58.310112532Z" + created: "2024-04-04T11:51:47.876974783Z" description: A Helm chart for CloudGuard Workload Security digest: 194ba8d8578b0691900d3af3e51e71b5b9a679b9e8e250b9e07559638f1f5bf1 home: https://secure.dome9.com/v2/ @@ -1077,7 +1118,7 @@ entries: version: 1.11.0 - apiVersion: v1 appVersion: v1.1.0 - created: "2024-03-17T11:49:58.309522149Z" + created: "2024-04-04T11:51:47.876458324Z" description: A Helm chart for CloudGuard Workload Security digest: a0010f440f43895e2ed1268555663451b0185d3ad1147f7dfad2d5d6026065f4 home: https://secure.dome9.com/v2/ @@ -1098,7 +1139,7 @@ entries: version: 1.09.3 - apiVersion: v1 appVersion: v1.1.0 - created: "2024-03-17T11:49:58.308933059Z" + created: "2024-04-04T11:51:47.875915677Z" description: A Helm chart for CloudGuard Workload Security digest: 123efdfe387e20ee7b97d537eb85d950c15bcc6814933fdb4ee9214067b4c27b home: https://secure.dome9.com/v2/ @@ -1119,7 +1160,7 @@ entries: version: 1.09.2 - apiVersion: v1 appVersion: v1.1.0 - created: "2024-03-17T11:49:58.308331535Z" + created: "2024-04-04T11:51:47.87538902Z" description: A Helm chart for CloudGuard Workload Security digest: 71b7b5c3928d7fc6e1c2625651311763710a50ccb970860da7f0de85c93b58ed home: https://secure.dome9.com/v2/ @@ -1141,7 +1182,7 @@ entries: version: 1.09.1 - apiVersion: v1 appVersion: v1.1.0 - created: "2024-03-17T11:49:58.307502221Z" + created: "2024-04-04T11:51:47.874711794Z" description: A Helm chart for CloudGuard Workload Security digest: 5e976c6fb56ed34ea76a60c71bce292a6769f885d0ddb80464b532a03c9c4b29 home: https://secure.dome9.com/v2/ @@ -1163,7 +1204,7 @@ entries: version: 1.09.0 - apiVersion: v1 appVersion: v1.1.0 - created: "2024-03-17T11:49:58.306701699Z" + created: "2024-04-04T11:51:47.874018608Z" description: A Helm chart for CloudGuard Workload Security digest: 5e616877265d618bfd075fd1df8a58b9b929c0332cc61f6a28ac64f676566503 home: https://secure.dome9.com/v2/ @@ -1185,7 +1226,7 @@ entries: version: 1.07.1 - apiVersion: v1 appVersion: v1.1.0 - created: "2024-03-17T11:49:58.305893423Z" + created: "2024-04-04T11:51:47.873367038Z" description: A Helm chart for CloudGuard Workload Security digest: 8920c6606a6038ee4ed0b1e201fc28ea094b8a0d564b262435273907d7e65e82 home: https://secure.dome9.com/v2/ @@ -1207,7 +1248,7 @@ entries: version: 1.07.0 - apiVersion: v1 appVersion: v1.1.0 - created: "2024-03-17T11:49:58.304630155Z" + created: "2024-04-04T11:51:47.872649588Z" description: A Helm chart for Dome9 inventory uploader digest: bebb6e83ed371d2501879219a72540a2e7f45518f32ede0c64f7109b5b443033 home: https://secure.dome9.com/v2/ @@ -1226,7 +1267,7 @@ entries: version: "1.06" - apiVersion: v1 appVersion: v1.1.0 - created: "2024-03-17T11:49:58.302152849Z" + created: "2024-04-04T11:51:47.872179295Z" description: A Helm chart for Dome9 inventory uploader digest: ebaf4da8a836f017cb4cbd0012b063e293e3ae805ebddb92ce49d666fe328cf4 home: https://secure.dome9.com/v2/ @@ -1245,7 +1286,7 @@ entries: version: "1.05" - apiVersion: v1 appVersion: v1.1.0 - created: "2024-03-17T11:49:58.301620624Z" + created: "2024-04-04T11:51:47.871576476Z" description: A Helm chart for Dome9 inventory uploader digest: 54fa558ffa87cd41617ce2422b643680ff975ae4e76252dd9dc0a6bde483af38 home: https://secure.dome9.com/v2/ @@ -1264,7 +1305,7 @@ entries: version: "1.03" - apiVersion: v1 appVersion: "1.01" - created: "2024-03-17T11:49:58.301087488Z" + created: "2024-04-04T11:51:47.870912425Z" description: A Helm chart for Dome9 inventory uploader digest: c2514f34c7d80d704d13e7233f660ad55cd56895f671ad68128affe47ada14a5 home: https://secure.dome9.com/v2/ @@ -1283,7 +1324,7 @@ entries: version: "1.02" - apiVersion: v1 appVersion: "1" - created: "2024-03-17T11:49:58.310605454Z" + created: "2024-04-04T11:51:47.877468198Z" description: A Helm chart for Dome9 inventory uploader digest: ee75a01ae09e8ceec83cda0d16621198ebb2139b87c323966e65ba6ca65024f0 home: https://secure.dome9.com/v2/ @@ -1300,4 +1341,4 @@ entries: urls: - https://raw.githubusercontent.com/CheckPointSW/charts/master/repository/cp-resource-management-1.tgz version: "1" -generated: "2024-03-17T11:49:58.230555099Z" +generated: "2024-04-04T11:51:47.797364392Z"