-
Notifications
You must be signed in to change notification settings - Fork 719
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
auto-chart-bump rancher-cis-benchmark 105.0.0+up7.0.0-rc.3
- Loading branch information
1 parent
a64f8b7
commit 06f4ea5
Showing
50 changed files
with
1,247 additions
and
7 deletions.
There are no files selected for viewing
Binary file added
BIN
+1.45 KB
assets/rancher-cis-benchmark-crd/rancher-cis-benchmark-crd-105.0.0+up7.0.0-rc.3.tgz
Binary file not shown.
Binary file added
BIN
+5.75 KB
assets/rancher-cis-benchmark/rancher-cis-benchmark-105.0.0+up7.0.0-rc.3.tgz
Binary file not shown.
10 changes: 10 additions & 0 deletions
10
charts/rancher-cis-benchmark-crd/105.0.0+up7.0.0-rc.3/Chart.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,10 @@ | ||
annotations: | ||
catalog.cattle.io/certified: rancher | ||
catalog.cattle.io/hidden: "true" | ||
catalog.cattle.io/namespace: cis-operator-system | ||
catalog.cattle.io/release-name: rancher-cis-benchmark-crd | ||
apiVersion: v1 | ||
description: Installs the CRDs for rancher-cis-benchmark. | ||
name: rancher-cis-benchmark-crd | ||
type: application | ||
version: 105.0.0+up7.0.0-rc.3 |
2 changes: 2 additions & 0 deletions
2
charts/rancher-cis-benchmark-crd/105.0.0+up7.0.0-rc.3/README.md
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,2 @@ | ||
# rancher-cis-benchmark-crd | ||
A Rancher chart that installs the CRDs used by rancher-cis-benchmark. |
149 changes: 149 additions & 0 deletions
149
charts/rancher-cis-benchmark-crd/105.0.0+up7.0.0-rc.3/templates/clusterscan.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,149 @@ | ||
apiVersion: apiextensions.k8s.io/v1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
name: clusterscans.cis.cattle.io | ||
spec: | ||
group: cis.cattle.io | ||
names: | ||
kind: ClusterScan | ||
plural: clusterscans | ||
singular: clusterscan | ||
scope: Cluster | ||
versions: | ||
- additionalPrinterColumns: | ||
- jsonPath: .status.lastRunScanProfileName | ||
name: ClusterScanProfile | ||
type: string | ||
- jsonPath: .status.summary.total | ||
name: Total | ||
type: string | ||
- jsonPath: .status.summary.pass | ||
name: Pass | ||
type: string | ||
- jsonPath: .status.summary.fail | ||
name: Fail | ||
type: string | ||
- jsonPath: .status.summary.skip | ||
name: Skip | ||
type: string | ||
- jsonPath: .status.summary.warn | ||
name: Warn | ||
type: string | ||
- jsonPath: .status.summary.notApplicable | ||
name: Not Applicable | ||
type: string | ||
- jsonPath: .status.lastRunTimestamp | ||
name: LastRunTimestamp | ||
type: string | ||
- jsonPath: .spec.scheduledScanConfig.cronSchedule | ||
name: CronSchedule | ||
type: string | ||
name: v1 | ||
schema: | ||
openAPIV3Schema: | ||
properties: | ||
spec: | ||
properties: | ||
scanProfileName: | ||
nullable: true | ||
type: string | ||
scheduledScanConfig: | ||
nullable: true | ||
properties: | ||
cronSchedule: | ||
nullable: true | ||
type: string | ||
retentionCount: | ||
type: integer | ||
scanAlertRule: | ||
nullable: true | ||
properties: | ||
alertOnComplete: | ||
type: boolean | ||
alertOnFailure: | ||
type: boolean | ||
type: object | ||
type: object | ||
scoreWarning: | ||
enum: | ||
- pass | ||
- fail | ||
nullable: true | ||
type: string | ||
type: object | ||
status: | ||
properties: | ||
NextScanAt: | ||
nullable: true | ||
type: string | ||
ScanAlertingRuleName: | ||
nullable: true | ||
type: string | ||
conditions: | ||
items: | ||
properties: | ||
lastTransitionTime: | ||
nullable: true | ||
type: string | ||
lastUpdateTime: | ||
nullable: true | ||
type: string | ||
message: | ||
nullable: true | ||
type: string | ||
reason: | ||
nullable: true | ||
type: string | ||
status: | ||
nullable: true | ||
type: string | ||
type: | ||
nullable: true | ||
type: string | ||
type: object | ||
nullable: true | ||
type: array | ||
display: | ||
nullable: true | ||
properties: | ||
error: | ||
type: boolean | ||
message: | ||
nullable: true | ||
type: string | ||
state: | ||
nullable: true | ||
type: string | ||
transitioning: | ||
type: boolean | ||
type: object | ||
lastRunScanProfileName: | ||
nullable: true | ||
type: string | ||
lastRunTimestamp: | ||
nullable: true | ||
type: string | ||
observedGeneration: | ||
type: integer | ||
summary: | ||
nullable: true | ||
properties: | ||
fail: | ||
type: integer | ||
notApplicable: | ||
type: integer | ||
pass: | ||
type: integer | ||
skip: | ||
type: integer | ||
total: | ||
type: integer | ||
warn: | ||
type: integer | ||
type: object | ||
type: object | ||
type: object | ||
served: true | ||
storage: true | ||
subresources: | ||
status: {} |
55 changes: 55 additions & 0 deletions
55
charts/rancher-cis-benchmark-crd/105.0.0+up7.0.0-rc.3/templates/clusterscanbenchmark.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,55 @@ | ||
apiVersion: apiextensions.k8s.io/v1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
name: clusterscanbenchmarks.cis.cattle.io | ||
spec: | ||
group: cis.cattle.io | ||
names: | ||
kind: ClusterScanBenchmark | ||
plural: clusterscanbenchmarks | ||
singular: clusterscanbenchmark | ||
scope: Cluster | ||
versions: | ||
- additionalPrinterColumns: | ||
- jsonPath: .spec.clusterProvider | ||
name: ClusterProvider | ||
type: string | ||
- jsonPath: .spec.minKubernetesVersion | ||
name: MinKubernetesVersion | ||
type: string | ||
- jsonPath: .spec.maxKubernetesVersion | ||
name: MaxKubernetesVersion | ||
type: string | ||
- jsonPath: .spec.customBenchmarkConfigMapName | ||
name: customBenchmarkConfigMapName | ||
type: string | ||
- jsonPath: .spec.customBenchmarkConfigMapNamespace | ||
name: customBenchmarkConfigMapNamespace | ||
type: string | ||
name: v1 | ||
schema: | ||
openAPIV3Schema: | ||
properties: | ||
spec: | ||
properties: | ||
clusterProvider: | ||
nullable: true | ||
type: string | ||
customBenchmarkConfigMapName: | ||
nullable: true | ||
type: string | ||
customBenchmarkConfigMapNamespace: | ||
nullable: true | ||
type: string | ||
maxKubernetesVersion: | ||
nullable: true | ||
type: string | ||
minKubernetesVersion: | ||
nullable: true | ||
type: string | ||
type: object | ||
type: object | ||
served: true | ||
storage: true | ||
subresources: | ||
status: {} |
37 changes: 37 additions & 0 deletions
37
charts/rancher-cis-benchmark-crd/105.0.0+up7.0.0-rc.3/templates/clusterscanprofile.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,37 @@ | ||
apiVersion: apiextensions.k8s.io/v1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
name: clusterscanprofiles.cis.cattle.io | ||
spec: | ||
group: cis.cattle.io | ||
names: | ||
kind: ClusterScanProfile | ||
plural: clusterscanprofiles | ||
singular: clusterscanprofile | ||
scope: Cluster | ||
versions: | ||
- additionalPrinterColumns: | ||
- jsonPath: .spec.benchmarkVersion | ||
name: BenchmarkVersion | ||
type: string | ||
name: v1 | ||
schema: | ||
openAPIV3Schema: | ||
properties: | ||
spec: | ||
properties: | ||
benchmarkVersion: | ||
nullable: true | ||
type: string | ||
skipTests: | ||
items: | ||
nullable: true | ||
type: string | ||
nullable: true | ||
type: array | ||
type: object | ||
type: object | ||
served: true | ||
storage: true | ||
subresources: | ||
status: {} |
40 changes: 40 additions & 0 deletions
40
charts/rancher-cis-benchmark-crd/105.0.0+up7.0.0-rc.3/templates/clusterscanreport.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,40 @@ | ||
apiVersion: apiextensions.k8s.io/v1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
name: clusterscanreports.cis.cattle.io | ||
spec: | ||
group: cis.cattle.io | ||
names: | ||
kind: ClusterScanReport | ||
plural: clusterscanreports | ||
singular: clusterscanreport | ||
scope: Cluster | ||
versions: | ||
- additionalPrinterColumns: | ||
- jsonPath: .spec.lastRunTimestamp | ||
name: LastRunTimestamp | ||
type: string | ||
- jsonPath: .spec.benchmarkVersion | ||
name: BenchmarkVersion | ||
type: string | ||
name: v1 | ||
schema: | ||
openAPIV3Schema: | ||
properties: | ||
spec: | ||
properties: | ||
benchmarkVersion: | ||
nullable: true | ||
type: string | ||
lastRunTimestamp: | ||
nullable: true | ||
type: string | ||
reportJSON: | ||
nullable: true | ||
type: string | ||
type: object | ||
type: object | ||
served: true | ||
storage: true | ||
subresources: | ||
status: {} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# Rancher CIS Benchmark Chart | ||
|
||
The cis-operator enables running CIS benchmark security scans on a kubernetes cluster and generate compliance reports that can be downloaded. | ||
|
||
# Installation | ||
|
||
``` | ||
helm install rancher-cis-benchmark ./ --create-namespace -n cis-operator-system | ||
``` |
File renamed without changes.
27 changes: 27 additions & 0 deletions
27
charts/rancher-cis-benchmark/105.0.0+up7.0.0-rc.3/templates/_helpers.tpl
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,27 @@ | ||
{{/* Ensure namespace is set the same everywhere */}} | ||
{{- define "cis.namespace" -}} | ||
{{- .Release.Namespace | default "cis-operator-system" -}} | ||
{{- end -}} | ||
|
||
{{- define "system_default_registry" -}} | ||
{{- if .Values.global.cattle.systemDefaultRegistry -}} | ||
{{- printf "%s/" .Values.global.cattle.systemDefaultRegistry -}} | ||
{{- else -}} | ||
{{- "" -}} | ||
{{- end -}} | ||
{{- end -}} | ||
|
||
{{/* | ||
Windows cluster will add default taint for linux nodes, | ||
add below linux tolerations to workloads could be scheduled to those linux nodes | ||
*/}} | ||
{{- define "linux-node-tolerations" -}} | ||
- key: "cattle.io/os" | ||
value: "linux" | ||
effect: "NoSchedule" | ||
operator: "Equal" | ||
{{- end -}} | ||
|
||
{{- define "linux-node-selector" -}} | ||
kubernetes.io/os: linux | ||
{{- end -}} |
14 changes: 14 additions & 0 deletions
14
charts/rancher-cis-benchmark/105.0.0+up7.0.0-rc.3/templates/alertingrule.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,14 @@ | ||
{{- if .Values.alerts.enabled -}} | ||
--- | ||
apiVersion: monitoring.coreos.com/v1 | ||
kind: PodMonitor | ||
metadata: | ||
name: rancher-cis-pod-monitor | ||
namespace: {{ template "cis.namespace" . }} | ||
spec: | ||
selector: | ||
matchLabels: | ||
cis.cattle.io/operator: cis-operator | ||
podMetricsEndpoints: | ||
- port: cismetrics | ||
{{- end }} |
8 changes: 8 additions & 0 deletions
8
charts/rancher-cis-benchmark/105.0.0+up7.0.0-rc.3/templates/benchmark-aks-1.0.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,8 @@ | ||
--- | ||
apiVersion: cis.cattle.io/v1 | ||
kind: ClusterScanBenchmark | ||
metadata: | ||
name: aks-1.0 | ||
spec: | ||
clusterProvider: aks | ||
minKubernetesVersion: "1.15.0" |
8 changes: 8 additions & 0 deletions
8
charts/rancher-cis-benchmark/105.0.0+up7.0.0-rc.3/templates/benchmark-cis-1.8.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,8 @@ | ||
--- | ||
apiVersion: cis.cattle.io/v1 | ||
kind: ClusterScanBenchmark | ||
metadata: | ||
name: cis-1.8 | ||
spec: | ||
clusterProvider: "" | ||
minKubernetesVersion: "1.26.0" |
8 changes: 8 additions & 0 deletions
8
charts/rancher-cis-benchmark/105.0.0+up7.0.0-rc.3/templates/benchmark-eks-1.2.0.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,8 @@ | ||
--- | ||
apiVersion: cis.cattle.io/v1 | ||
kind: ClusterScanBenchmark | ||
metadata: | ||
name: eks-1.2.0 | ||
spec: | ||
clusterProvider: eks | ||
minKubernetesVersion: "1.15.0" |
File renamed without changes.
File renamed without changes.
Oops, something went wrong.