diff --git a/assets/fleet-agent/fleet-agent-0.3.500-rc08.tgz b/assets/fleet-agent/fleet-agent-0.3.500-rc08.tgz new file mode 100755 index 000000000..a69384aa7 Binary files /dev/null and b/assets/fleet-agent/fleet-agent-0.3.500-rc08.tgz differ diff --git a/assets/fleet-crd/fleet-crd-0.3.500-rc08.tgz b/assets/fleet-crd/fleet-crd-0.3.500-rc08.tgz new file mode 100755 index 000000000..05d53e118 Binary files /dev/null and b/assets/fleet-crd/fleet-crd-0.3.500-rc08.tgz differ diff --git a/assets/fleet/fleet-0.3.500-rc08.tgz b/assets/fleet/fleet-0.3.500-rc08.tgz new file mode 100755 index 000000000..6b302bc92 Binary files /dev/null and b/assets/fleet/fleet-0.3.500-rc08.tgz differ diff --git a/charts/fleet-agent/fleet-agent/0.3.500-rc08/Chart.yaml b/charts/fleet-agent/fleet-agent/0.3.500-rc08/Chart.yaml new file mode 100755 index 000000000..b92c06b12 --- /dev/null +++ b/charts/fleet-agent/fleet-agent/0.3.500-rc08/Chart.yaml @@ -0,0 +1,12 @@ +annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: fleet-system + catalog.cattle.io/os: linux + catalog.cattle.io/release-name: fleet-agent +apiVersion: v2 +appVersion: 0.3.5 +description: Fleet Manager Agent - GitOps at Scale +icon: https://charts.rancher.io/assets/logos/fleet.svg +name: fleet-agent +version: 0.3.500-rc08 diff --git a/charts/fleet-agent/fleet-agent/0.3.500-rc08/templates/_helpers.tpl b/charts/fleet-agent/fleet-agent/0.3.500-rc08/templates/_helpers.tpl new file mode 100755 index 000000000..f652b5643 --- /dev/null +++ b/charts/fleet-agent/fleet-agent/0.3.500-rc08/templates/_helpers.tpl @@ -0,0 +1,7 @@ +{{- define "system_default_registry" -}} +{{- if .Values.global.cattle.systemDefaultRegistry -}} +{{- printf "%s/" .Values.global.cattle.systemDefaultRegistry -}} +{{- else -}} +{{- "" -}} +{{- end -}} +{{- end -}} \ No newline at end of file diff --git a/charts/fleet-agent/fleet-agent/0.3.500-rc08/templates/configmap.yaml b/charts/fleet-agent/fleet-agent/0.3.500-rc08/templates/configmap.yaml new file mode 100755 index 000000000..ce61a8756 --- /dev/null +++ b/charts/fleet-agent/fleet-agent/0.3.500-rc08/templates/configmap.yaml @@ -0,0 +1,12 @@ +kind: ConfigMap +apiVersion: v1 +metadata: + name: fleet-agent +data: + config: |- + { + {{ if .Values.labels }} + "labels":{{toJson .Values.labels}}, + {{ end }} + "clientID":"{{.Values.clientID}}" + } diff --git a/charts/fleet-agent/fleet-agent/0.3.500-rc08/templates/deployment.yaml b/charts/fleet-agent/fleet-agent/0.3.500-rc08/templates/deployment.yaml new file mode 100755 index 000000000..72323dc76 --- /dev/null +++ b/charts/fleet-agent/fleet-agent/0.3.500-rc08/templates/deployment.yaml @@ -0,0 +1,30 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: fleet-agent +spec: + selector: + matchLabels: + app: fleet-agent + template: + metadata: + labels: + app: fleet-agent + spec: + containers: + - env: + - name: NAMESPACE + valueFrom: + fieldRef: + fieldPath: metadata.namespace + image: '{{ template "system_default_registry" . }}{{.Values.image.repository}}:{{.Values.image.tag}}' + name: fleet-agent + serviceAccountName: fleet-agent + {{- with .Values.fleetAgent.tolerations }} + tolerations: + {{- toYaml . | nindent 8 }} + {{- end }} + {{- with .Values.fleetAgent.nodeSelector }} + nodeSelector: + {{- toYaml . | nindent 8 }} + {{- end }} diff --git a/charts/fleet-agent/fleet-agent/0.3.500-rc08/templates/network_policy_allow_all.yaml b/charts/fleet-agent/fleet-agent/0.3.500-rc08/templates/network_policy_allow_all.yaml new file mode 100755 index 000000000..a72109a06 --- /dev/null +++ b/charts/fleet-agent/fleet-agent/0.3.500-rc08/templates/network_policy_allow_all.yaml @@ -0,0 +1,15 @@ +--- +apiVersion: networking.k8s.io/v1 +kind: NetworkPolicy +metadata: + name: default-allow-all + namespace: {{ .Values.internal.systemNamespace }} +spec: + podSelector: {} + ingress: + - {} + egress: + - {} + policyTypes: + - Ingress + - Egress diff --git a/charts/fleet-agent/fleet-agent/0.3.500-rc08/templates/patch_default_serviceaccount.yaml b/charts/fleet-agent/fleet-agent/0.3.500-rc08/templates/patch_default_serviceaccount.yaml new file mode 100755 index 000000000..2448cb4f3 --- /dev/null +++ b/charts/fleet-agent/fleet-agent/0.3.500-rc08/templates/patch_default_serviceaccount.yaml @@ -0,0 +1,28 @@ +--- +apiVersion: batch/v1 +kind: Job +metadata: + name: patch-fleet-sa + annotations: + "helm.sh/hook": post-install, post-upgrade + "helm.sh/hook-delete-policy": hook-succeeded, before-hook-creation +spec: + template: + spec: + serviceAccountName: fleet-agent + restartPolicy: Never + containers: + - name: sa + image: "{{ template "system_default_registry" . }}{{ .Values.global.kubectl.repository }}:{{ .Values.global.kubectl.tag }}" + imagePullPolicy: {{ .Values.global.imagePullPolicy }} + command: ["kubectl", "patch", "serviceaccount", "default", "-p", "{\"automountServiceAccountToken\": false}"] + args: ["-n", {{ .Values.internal.systemNamespace }}] + {{- with .Values.kubectl.tolerations }} + tolerations: + {{- toYaml . | nindent 8 }} + {{- end }} + {{- with .Values.kubectl.nodeSelector }} + nodeSelector: + {{- toYaml . | nindent 8 }} + {{- end }} + backoffLimit: 1 diff --git a/charts/fleet-agent/fleet-agent/0.3.500-rc08/templates/rbac.yaml b/charts/fleet-agent/fleet-agent/0.3.500-rc08/templates/rbac.yaml new file mode 100755 index 000000000..805949bf2 --- /dev/null +++ b/charts/fleet-agent/fleet-agent/0.3.500-rc08/templates/rbac.yaml @@ -0,0 +1,25 @@ +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRole +metadata: + name: fleet-agent-system-fleet-agent-role +rules: +- apiGroups: + - '*' + resources: + - '*' + verbs: + - '*' + +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRoleBinding +metadata: + name: fleet-agent-system-fleet-agent-role-binding +roleRef: + apiGroup: rbac.authorization.k8s.io + kind: ClusterRole + name: fleet-agent-system-fleet-agent-role +subjects: +- kind: ServiceAccount + name: fleet-agent + namespace: {{.Release.Namespace}} diff --git a/charts/fleet-agent/fleet-agent/0.3.500-rc08/templates/secret.yaml b/charts/fleet-agent/fleet-agent/0.3.500-rc08/templates/secret.yaml new file mode 100755 index 000000000..471588204 --- /dev/null +++ b/charts/fleet-agent/fleet-agent/0.3.500-rc08/templates/secret.yaml @@ -0,0 +1,10 @@ +apiVersion: v1 +data: + systemRegistrationNamespace: "{{b64enc .Values.systemRegistrationNamespace}}" + clusterNamespace: "{{b64enc .Values.clusterNamespace}}" + token: "{{b64enc .Values.token}}" + apiServerURL: "{{b64enc .Values.apiServerURL}}" + apiServerCA: "{{b64enc .Values.apiServerCA}}" +kind: Secret +metadata: + name: fleet-agent-bootstrap diff --git a/charts/fleet-agent/fleet-agent/0.3.500-rc08/templates/serviceaccount.yaml b/charts/fleet-agent/fleet-agent/0.3.500-rc08/templates/serviceaccount.yaml new file mode 100755 index 000000000..73e27f0be --- /dev/null +++ b/charts/fleet-agent/fleet-agent/0.3.500-rc08/templates/serviceaccount.yaml @@ -0,0 +1,4 @@ +apiVersion: v1 +kind: ServiceAccount +metadata: + name: fleet-agent diff --git a/charts/fleet-agent/fleet-agent/0.3.500-rc08/templates/validate.yaml b/charts/fleet-agent/fleet-agent/0.3.500-rc08/templates/validate.yaml new file mode 100755 index 000000000..d53ff1c50 --- /dev/null +++ b/charts/fleet-agent/fleet-agent/0.3.500-rc08/templates/validate.yaml @@ -0,0 +1,11 @@ +{{if ne .Release.Namespace .Values.internal.systemNamespace }} +{{ fail (printf "This chart must be installed in the namespace %s as the release name fleet-agent" .Values.internal.systemNamespace) }} +{{end}} + +{{if ne .Release.Name .Values.internal.managedReleaseName }} +{{ fail (printf "This chart must be installed in the namespace %s as the release name fleet-agent" .Values.internal.managedReleaseName) }} +{{end}} + +{{if not .Values.apiServerURL }} +{{ fail "apiServerURL is required to be set, and most likely also apiServerCA" }} +{{end}} diff --git a/charts/fleet-agent/fleet-agent/0.3.500-rc08/values.yaml b/charts/fleet-agent/fleet-agent/0.3.500-rc08/values.yaml new file mode 100755 index 000000000..179f88be2 --- /dev/null +++ b/charts/fleet-agent/fleet-agent/0.3.500-rc08/values.yaml @@ -0,0 +1,57 @@ +image: + os: "windows,linux" + repository: rancher/fleet-agent + tag: v0.3.5-rc8 + +# The public URL of the Kubernetes API server running the Fleet Manager must be set here +# Example: https://example.com:6443 +apiServerURL: "" + +# The the pem encoded value of the CA of the Kubernetes API server running the Fleet Manager. +# If left empty it is assumed this Kubernetes API TLS is signed by a well known CA. +apiServerCA: "" + +# The cluster registration value +token: "" + +# Labels to add to the cluster upon registration only. They are not added after the fact. +#labels: +# foo: bar + +# The client ID of the cluster to associate with +clientID: "" + +# The namespace of the cluster we are register with +clusterNamespace: "" + +# The namespace containing the clusters registration secrets +systemRegistrationNamespace: fleet-clusters-system + +# Please do not change the below setting unless you really know what you are doing +internal: + systemNamespace: fleet-system + managedReleaseName: fleet-agent + +# The nodeSelector and tolerations for the agent deployment +fleetAgent: + nodeSelector: {} + tolerations: [] +kubectl: + nodeSelector: + kubernetes.io/os: linux + tolerations: + - key: cattle.io/os + operator: "Equal" + value: "linux" + effect: NoSchedule + - key: node.cloudprovider.kubernetes.io/uninitialized + operator: "Equal" + value: "true" + effect: NoSchedule + +global: + cattle: + systemDefaultRegistry: "" + kubectl: + repository: rancher/kubectl + tag: v1.20.2 diff --git a/charts/fleet-crd/fleet-crd/0.3.500-rc08/Chart.yaml b/charts/fleet-crd/fleet-crd/0.3.500-rc08/Chart.yaml new file mode 100755 index 000000000..11d60fc50 --- /dev/null +++ b/charts/fleet-crd/fleet-crd/0.3.500-rc08/Chart.yaml @@ -0,0 +1,12 @@ +annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: fleet-system + catalog.cattle.io/os: linux + catalog.cattle.io/release-name: fleet-crd +apiVersion: v2 +appVersion: 0.3.5 +description: Fleet Manager CustomResourceDefinitions +icon: https://charts.rancher.io/assets/logos/fleet.svg +name: fleet-crd +version: 0.3.500-rc08 diff --git a/charts/fleet-crd/fleet-crd/0.3.500-rc08/templates/crds.yaml b/charts/fleet-crd/fleet-crd/0.3.500-rc08/templates/crds.yaml new file mode 100755 index 000000000..9fc559d8c --- /dev/null +++ b/charts/fleet-crd/fleet-crd/0.3.500-rc08/templates/crds.yaml @@ -0,0 +1,2314 @@ +apiVersion: apiextensions.k8s.io/v1beta1 +kind: CustomResourceDefinition +metadata: + name: bundles.fleet.cattle.io +spec: + additionalPrinterColumns: + - JSONPath: .status.display.readyClusters + name: BundleDeployments-Ready + type: string + - JSONPath: .status.conditions[?(@.type=="Ready")].message + name: Status + type: string + group: fleet.cattle.io + names: + kind: Bundle + plural: bundles + singular: bundle + scope: Namespaced + subresources: + status: {} + validation: + openAPIV3Schema: + properties: + spec: + properties: + defaultNamespace: + nullable: true + type: string + diff: + nullable: true + properties: + comparePatches: + items: + properties: + apiVersion: + nullable: true + type: string + jsonPointers: + items: + nullable: true + type: string + nullable: true + type: array + kind: + nullable: true + type: string + name: + nullable: true + type: string + namespace: + nullable: true + type: string + operations: + items: + properties: + op: + nullable: true + type: string + path: + nullable: true + type: string + value: + nullable: true + type: string + type: object + nullable: true + type: array + type: object + nullable: true + type: array + type: object + forceSyncGeneration: + type: integer + helm: + nullable: true + properties: + chart: + nullable: true + type: string + force: + type: boolean + maxHistory: + type: integer + releaseName: + nullable: true + type: string + repo: + nullable: true + type: string + takeOwnership: + type: boolean + timeoutSeconds: + type: integer + values: + nullable: true + type: object + valuesFiles: + items: + nullable: true + type: string + nullable: true + type: array + version: + nullable: true + type: string + type: object + kustomize: + nullable: true + properties: + dir: + nullable: true + type: string + type: object + namespace: + nullable: true + type: string + paused: + type: boolean + resources: + items: + properties: + content: + nullable: true + type: string + encoding: + nullable: true + type: string + name: + nullable: true + type: string + type: object + nullable: true + type: array + rolloutStrategy: + nullable: true + properties: + autoPartitionSize: + nullable: true + type: string + maxUnavailable: + nullable: true + type: string + maxUnavailablePartitions: + nullable: true + type: string + partitions: + items: + properties: + clusterGroup: + nullable: true + type: string + clusterGroupSelector: + nullable: true + properties: + matchExpressions: + items: + properties: + key: + nullable: true + type: string + operator: + nullable: true + type: string + values: + items: + nullable: true + type: string + nullable: true + type: array + type: object + nullable: true + type: array + matchLabels: + additionalProperties: + nullable: true + type: string + nullable: true + type: object + type: object + clusterName: + nullable: true + type: string + clusterSelector: + nullable: true + properties: + matchExpressions: + items: + properties: + key: + nullable: true + type: string + operator: + nullable: true + type: string + values: + items: + nullable: true + type: string + nullable: true + type: array + type: object + nullable: true + type: array + matchLabels: + additionalProperties: + nullable: true + type: string + nullable: true + type: object + type: object + maxUnavailable: + nullable: true + type: string + name: + nullable: true + type: string + type: object + nullable: true + type: array + type: object + serviceAccount: + nullable: true + type: string + targetRestrictions: + items: + properties: + clusterGroup: + nullable: true + type: string + clusterGroupSelector: + nullable: true + properties: + matchExpressions: + items: + properties: + key: + nullable: true + type: string + operator: + nullable: true + type: string + values: + items: + nullable: true + type: string + nullable: true + type: array + type: object + nullable: true + type: array + matchLabels: + additionalProperties: + nullable: true + type: string + nullable: true + type: object + type: object + clusterName: + nullable: true + type: string + clusterSelector: + nullable: true + properties: + matchExpressions: + items: + properties: + key: + nullable: true + type: string + operator: + nullable: true + type: string + values: + items: + nullable: true + type: string + nullable: true + type: array + type: object + nullable: true + type: array + matchLabels: + additionalProperties: + nullable: true + type: string + nullable: true + type: object + type: object + name: + nullable: true + type: string + type: object + nullable: true + type: array + targets: + items: + properties: + clusterGroup: + nullable: true + type: string + clusterGroupSelector: + nullable: true + properties: + matchExpressions: + items: + properties: + key: + nullable: true + type: string + operator: + nullable: true + type: string + values: + items: + nullable: true + type: string + nullable: true + type: array + type: object + nullable: true + type: array + matchLabels: + additionalProperties: + nullable: true + type: string + nullable: true + type: object + type: object + clusterName: + nullable: true + type: string + clusterSelector: + nullable: true + properties: + matchExpressions: + items: + properties: + key: + nullable: true + type: string + operator: + nullable: true + type: string + values: + items: + nullable: true + type: string + nullable: true + type: array + type: object + nullable: true + type: array + matchLabels: + additionalProperties: + nullable: true + type: string + nullable: true + type: object + type: object + defaultNamespace: + nullable: true + type: string + diff: + nullable: true + properties: + comparePatches: + items: + properties: + apiVersion: + nullable: true + type: string + jsonPointers: + items: + nullable: true + type: string + nullable: true + type: array + kind: + nullable: true + type: string + name: + nullable: true + type: string + namespace: + nullable: true + type: string + operations: + items: + properties: + op: + nullable: true + type: string + path: + nullable: true + type: string + value: + nullable: true + type: string + type: object + nullable: true + type: array + type: object + nullable: true + type: array + type: object + forceSyncGeneration: + type: integer + helm: + nullable: true + properties: + chart: + nullable: true + type: string + force: + type: boolean + maxHistory: + type: integer + releaseName: + nullable: true + type: string + repo: + nullable: true + type: string + takeOwnership: + type: boolean + timeoutSeconds: + type: integer + values: + nullable: true + type: object + valuesFiles: + items: + nullable: true + type: string + nullable: true + type: array + version: + nullable: true + type: string + type: object + kustomize: + nullable: true + properties: + dir: + nullable: true + type: string + type: object + name: + nullable: true + type: string + namespace: + nullable: true + type: string + serviceAccount: + nullable: true + type: string + yaml: + nullable: true + properties: + overlays: + items: + nullable: true + type: string + nullable: true + type: array + type: object + type: object + nullable: true + type: array + yaml: + nullable: true + properties: + overlays: + items: + nullable: true + type: string + nullable: true + type: array + type: object + type: object + status: + properties: + 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: + properties: + readyClusters: + nullable: true + type: string + state: + nullable: true + type: string + type: object + maxNew: + type: integer + maxUnavailable: + type: integer + maxUnavailablePartitions: + type: integer + newlyCreated: + type: integer + observedGeneration: + type: integer + partitions: + items: + properties: + count: + type: integer + maxUnavailable: + type: integer + name: + nullable: true + type: string + summary: + properties: + desiredReady: + type: integer + errApplied: + type: integer + modified: + type: integer + nonReadyResources: + items: + properties: + bundleState: + nullable: true + type: string + message: + nullable: true + type: string + modifiedStatus: + items: + properties: + apiVersion: + nullable: true + type: string + delete: + type: boolean + kind: + nullable: true + type: string + missing: + type: boolean + name: + nullable: true + type: string + namespace: + nullable: true + type: string + patch: + nullable: true + type: string + type: object + nullable: true + type: array + name: + nullable: true + type: string + nonReadyStatus: + items: + properties: + apiVersion: + nullable: true + type: string + kind: + nullable: true + type: string + name: + nullable: true + type: string + namespace: + nullable: true + type: string + summary: + properties: + error: + type: boolean + message: + items: + nullable: true + type: string + nullable: true + type: array + state: + nullable: true + type: string + transitioning: + type: boolean + type: object + uid: + nullable: true + type: string + type: object + nullable: true + type: array + type: object + nullable: true + type: array + notReady: + type: integer + outOfSync: + type: integer + pending: + type: integer + ready: + type: integer + waitApplied: + type: integer + type: object + unavailable: + type: integer + type: object + nullable: true + type: array + resourceKey: + items: + properties: + apiVersion: + nullable: true + type: string + kind: + nullable: true + type: string + name: + nullable: true + type: string + namespace: + nullable: true + type: string + type: object + nullable: true + type: array + summary: + properties: + desiredReady: + type: integer + errApplied: + type: integer + modified: + type: integer + nonReadyResources: + items: + properties: + bundleState: + nullable: true + type: string + message: + nullable: true + type: string + modifiedStatus: + items: + properties: + apiVersion: + nullable: true + type: string + delete: + type: boolean + kind: + nullable: true + type: string + missing: + type: boolean + name: + nullable: true + type: string + namespace: + nullable: true + type: string + patch: + nullable: true + type: string + type: object + nullable: true + type: array + name: + nullable: true + type: string + nonReadyStatus: + items: + properties: + apiVersion: + nullable: true + type: string + kind: + nullable: true + type: string + name: + nullable: true + type: string + namespace: + nullable: true + type: string + summary: + properties: + error: + type: boolean + message: + items: + nullable: true + type: string + nullable: true + type: array + state: + nullable: true + type: string + transitioning: + type: boolean + type: object + uid: + nullable: true + type: string + type: object + nullable: true + type: array + type: object + nullable: true + type: array + notReady: + type: integer + outOfSync: + type: integer + pending: + type: integer + ready: + type: integer + waitApplied: + type: integer + type: object + unavailable: + type: integer + unavailablePartitions: + type: integer + type: object + type: object + version: v1alpha1 + versions: + - name: v1alpha1 + served: true + storage: true + +--- +apiVersion: apiextensions.k8s.io/v1beta1 +kind: CustomResourceDefinition +metadata: + name: bundledeployments.fleet.cattle.io +spec: + additionalPrinterColumns: + - JSONPath: .status.display.deployed + name: Deployed + type: string + - JSONPath: .status.display.monitored + name: Monitored + type: string + - JSONPath: .status.conditions[?(@.type=="Ready")].message + name: Status + type: string + group: fleet.cattle.io + names: + kind: BundleDeployment + plural: bundledeployments + singular: bundledeployment + scope: Namespaced + subresources: + status: {} + validation: + openAPIV3Schema: + properties: + spec: + properties: + deploymentID: + nullable: true + type: string + options: + properties: + defaultNamespace: + nullable: true + type: string + diff: + nullable: true + properties: + comparePatches: + items: + properties: + apiVersion: + nullable: true + type: string + jsonPointers: + items: + nullable: true + type: string + nullable: true + type: array + kind: + nullable: true + type: string + name: + nullable: true + type: string + namespace: + nullable: true + type: string + operations: + items: + properties: + op: + nullable: true + type: string + path: + nullable: true + type: string + value: + nullable: true + type: string + type: object + nullable: true + type: array + type: object + nullable: true + type: array + type: object + forceSyncGeneration: + type: integer + helm: + nullable: true + properties: + chart: + nullable: true + type: string + force: + type: boolean + maxHistory: + type: integer + releaseName: + nullable: true + type: string + repo: + nullable: true + type: string + takeOwnership: + type: boolean + timeoutSeconds: + type: integer + values: + nullable: true + type: object + valuesFiles: + items: + nullable: true + type: string + nullable: true + type: array + version: + nullable: true + type: string + type: object + kustomize: + nullable: true + properties: + dir: + nullable: true + type: string + type: object + namespace: + nullable: true + type: string + serviceAccount: + nullable: true + type: string + yaml: + nullable: true + properties: + overlays: + items: + nullable: true + type: string + nullable: true + type: array + type: object + type: object + stagedDeploymentID: + nullable: true + type: string + stagedOptions: + properties: + defaultNamespace: + nullable: true + type: string + diff: + nullable: true + properties: + comparePatches: + items: + properties: + apiVersion: + nullable: true + type: string + jsonPointers: + items: + nullable: true + type: string + nullable: true + type: array + kind: + nullable: true + type: string + name: + nullable: true + type: string + namespace: + nullable: true + type: string + operations: + items: + properties: + op: + nullable: true + type: string + path: + nullable: true + type: string + value: + nullable: true + type: string + type: object + nullable: true + type: array + type: object + nullable: true + type: array + type: object + forceSyncGeneration: + type: integer + helm: + nullable: true + properties: + chart: + nullable: true + type: string + force: + type: boolean + maxHistory: + type: integer + releaseName: + nullable: true + type: string + repo: + nullable: true + type: string + takeOwnership: + type: boolean + timeoutSeconds: + type: integer + values: + nullable: true + type: object + valuesFiles: + items: + nullable: true + type: string + nullable: true + type: array + version: + nullable: true + type: string + type: object + kustomize: + nullable: true + properties: + dir: + nullable: true + type: string + type: object + namespace: + nullable: true + type: string + serviceAccount: + nullable: true + type: string + yaml: + nullable: true + properties: + overlays: + items: + nullable: true + type: string + nullable: true + type: array + type: object + type: object + type: object + status: + properties: + appliedDeploymentID: + 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: + properties: + deployed: + nullable: true + type: string + monitored: + nullable: true + type: string + state: + nullable: true + type: string + type: object + modifiedStatus: + items: + properties: + apiVersion: + nullable: true + type: string + delete: + type: boolean + kind: + nullable: true + type: string + missing: + type: boolean + name: + nullable: true + type: string + namespace: + nullable: true + type: string + patch: + nullable: true + type: string + type: object + nullable: true + type: array + nonModified: + type: boolean + nonReadyStatus: + items: + properties: + apiVersion: + nullable: true + type: string + kind: + nullable: true + type: string + name: + nullable: true + type: string + namespace: + nullable: true + type: string + summary: + properties: + error: + type: boolean + message: + items: + nullable: true + type: string + nullable: true + type: array + state: + nullable: true + type: string + transitioning: + type: boolean + type: object + uid: + nullable: true + type: string + type: object + nullable: true + type: array + ready: + type: boolean + release: + nullable: true + type: string + syncGeneration: + nullable: true + type: integer + type: object + type: object + version: v1alpha1 + versions: + - name: v1alpha1 + served: true + storage: true + +--- +apiVersion: apiextensions.k8s.io/v1beta1 +kind: CustomResourceDefinition +metadata: + name: bundlenamespacemappings.fleet.cattle.io +spec: + group: fleet.cattle.io + names: + kind: BundleNamespaceMapping + plural: bundlenamespacemappings + singular: bundlenamespacemapping + scope: Namespaced + subresources: + status: {} + validation: + openAPIV3Schema: + properties: + bundleSelector: + nullable: true + properties: + matchExpressions: + items: + properties: + key: + nullable: true + type: string + operator: + nullable: true + type: string + values: + items: + nullable: true + type: string + nullable: true + type: array + type: object + nullable: true + type: array + matchLabels: + additionalProperties: + nullable: true + type: string + nullable: true + type: object + type: object + namespaceSelector: + nullable: true + properties: + matchExpressions: + items: + properties: + key: + nullable: true + type: string + operator: + nullable: true + type: string + values: + items: + nullable: true + type: string + nullable: true + type: array + type: object + nullable: true + type: array + matchLabels: + additionalProperties: + nullable: true + type: string + nullable: true + type: object + type: object + type: object + version: v1alpha1 + versions: + - name: v1alpha1 + served: true + storage: true + +--- +apiVersion: apiextensions.k8s.io/v1beta1 +kind: CustomResourceDefinition +metadata: + name: clustergroups.fleet.cattle.io +spec: + additionalPrinterColumns: + - JSONPath: .status.display.readyClusters + name: Clusters-Ready + type: string + - JSONPath: .status.display.readyBundles + name: Bundles-Ready + type: string + - JSONPath: .status.conditions[?(@.type=="Ready")].message + name: Status + type: string + group: fleet.cattle.io + names: + categories: + - fleet + kind: ClusterGroup + plural: clustergroups + singular: clustergroup + scope: Namespaced + subresources: + status: {} + validation: + openAPIV3Schema: + properties: + spec: + properties: + selector: + nullable: true + properties: + matchExpressions: + items: + properties: + key: + nullable: true + type: string + operator: + nullable: true + type: string + values: + items: + nullable: true + type: string + nullable: true + type: array + type: object + nullable: true + type: array + matchLabels: + additionalProperties: + nullable: true + type: string + nullable: true + type: object + type: object + type: object + status: + properties: + clusterCount: + type: integer + 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: + properties: + readyBundles: + nullable: true + type: string + readyClusters: + nullable: true + type: string + state: + nullable: true + type: string + type: object + nonReadyClusterCount: + type: integer + nonReadyClusters: + items: + nullable: true + type: string + nullable: true + type: array + resourceCounts: + properties: + desiredReady: + type: integer + missing: + type: integer + modified: + type: integer + notReady: + type: integer + orphaned: + type: integer + ready: + type: integer + unknown: + type: integer + waitApplied: + type: integer + type: object + summary: + properties: + desiredReady: + type: integer + errApplied: + type: integer + modified: + type: integer + nonReadyResources: + items: + properties: + bundleState: + nullable: true + type: string + message: + nullable: true + type: string + modifiedStatus: + items: + properties: + apiVersion: + nullable: true + type: string + delete: + type: boolean + kind: + nullable: true + type: string + missing: + type: boolean + name: + nullable: true + type: string + namespace: + nullable: true + type: string + patch: + nullable: true + type: string + type: object + nullable: true + type: array + name: + nullable: true + type: string + nonReadyStatus: + items: + properties: + apiVersion: + nullable: true + type: string + kind: + nullable: true + type: string + name: + nullable: true + type: string + namespace: + nullable: true + type: string + summary: + properties: + error: + type: boolean + message: + items: + nullable: true + type: string + nullable: true + type: array + state: + nullable: true + type: string + transitioning: + type: boolean + type: object + uid: + nullable: true + type: string + type: object + nullable: true + type: array + type: object + nullable: true + type: array + notReady: + type: integer + outOfSync: + type: integer + pending: + type: integer + ready: + type: integer + waitApplied: + type: integer + type: object + type: object + type: object + version: v1alpha1 + versions: + - name: v1alpha1 + served: true + storage: true + +--- +apiVersion: apiextensions.k8s.io/v1beta1 +kind: CustomResourceDefinition +metadata: + name: clusters.fleet.cattle.io +spec: + additionalPrinterColumns: + - JSONPath: .status.display.readyBundles + name: Bundles-Ready + type: string + - JSONPath: .status.display.readyNodes + name: Nodes-Ready + type: string + - JSONPath: .status.display.sampleNode + name: Sample-Node + type: string + - JSONPath: .status.agent.lastSeen + name: Last-Seen + type: string + - JSONPath: .status.conditions[?(@.type=="Ready")].message + name: Status + type: string + group: fleet.cattle.io + names: + kind: Cluster + plural: clusters + singular: cluster + scope: Namespaced + subresources: + status: {} + validation: + openAPIV3Schema: + properties: + spec: + properties: + agentEnvVars: + items: + properties: + name: + nullable: true + type: string + value: + nullable: true + type: string + valueFrom: + nullable: true + properties: + configMapKeyRef: + nullable: true + properties: + key: + nullable: true + type: string + name: + nullable: true + type: string + optional: + nullable: true + type: boolean + type: object + fieldRef: + nullable: true + properties: + apiVersion: + nullable: true + type: string + fieldPath: + nullable: true + type: string + type: object + resourceFieldRef: + nullable: true + properties: + containerName: + nullable: true + type: string + divisor: + nullable: true + type: string + resource: + nullable: true + type: string + type: object + secretKeyRef: + nullable: true + properties: + key: + nullable: true + type: string + name: + nullable: true + type: string + optional: + nullable: true + type: boolean + type: object + type: object + type: object + nullable: true + type: array + clientID: + nullable: true + type: string + kubeConfigSecret: + nullable: true + type: string + paused: + type: boolean + redeployAgentGeneration: + type: integer + type: object + status: + properties: + agent: + properties: + lastSeen: + nullable: true + type: string + namespace: + nullable: true + type: string + nonReadyNodeNames: + items: + nullable: true + type: string + nullable: true + type: array + nonReadyNodes: + type: integer + readyNodeNames: + items: + nullable: true + type: string + nullable: true + type: array + readyNodes: + type: integer + type: object + agentDeployedGeneration: + nullable: true + type: integer + 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 + desiredReadyGitRepos: + type: integer + display: + properties: + readyBundles: + nullable: true + type: string + readyNodes: + nullable: true + type: string + sampleNode: + nullable: true + type: string + state: + nullable: true + type: string + type: object + namespace: + nullable: true + type: string + readyGitRepos: + type: integer + resourceCounts: + properties: + desiredReady: + type: integer + missing: + type: integer + modified: + type: integer + notReady: + type: integer + orphaned: + type: integer + ready: + type: integer + unknown: + type: integer + waitApplied: + type: integer + type: object + summary: + properties: + desiredReady: + type: integer + errApplied: + type: integer + modified: + type: integer + nonReadyResources: + items: + properties: + bundleState: + nullable: true + type: string + message: + nullable: true + type: string + modifiedStatus: + items: + properties: + apiVersion: + nullable: true + type: string + delete: + type: boolean + kind: + nullable: true + type: string + missing: + type: boolean + name: + nullable: true + type: string + namespace: + nullable: true + type: string + patch: + nullable: true + type: string + type: object + nullable: true + type: array + name: + nullable: true + type: string + nonReadyStatus: + items: + properties: + apiVersion: + nullable: true + type: string + kind: + nullable: true + type: string + name: + nullable: true + type: string + namespace: + nullable: true + type: string + summary: + properties: + error: + type: boolean + message: + items: + nullable: true + type: string + nullable: true + type: array + state: + nullable: true + type: string + transitioning: + type: boolean + type: object + uid: + nullable: true + type: string + type: object + nullable: true + type: array + type: object + nullable: true + type: array + notReady: + type: integer + outOfSync: + type: integer + pending: + type: integer + ready: + type: integer + waitApplied: + type: integer + type: object + type: object + type: object + version: v1alpha1 + versions: + - name: v1alpha1 + served: true + storage: true + +--- +apiVersion: apiextensions.k8s.io/v1beta1 +kind: CustomResourceDefinition +metadata: + name: clusterregistrationtokens.fleet.cattle.io +spec: + additionalPrinterColumns: + - JSONPath: .status.secretName + name: Secret-Name + type: string + group: fleet.cattle.io + names: + kind: ClusterRegistrationToken + plural: clusterregistrationtokens + singular: clusterregistrationtoken + scope: Namespaced + subresources: + status: {} + validation: + openAPIV3Schema: + properties: + spec: + properties: + ttl: + nullable: true + type: string + type: object + status: + properties: + expires: + nullable: true + type: string + secretName: + nullable: true + type: string + type: object + type: object + version: v1alpha1 + versions: + - name: v1alpha1 + served: true + storage: true + +--- +apiVersion: apiextensions.k8s.io/v1beta1 +kind: CustomResourceDefinition +metadata: + name: gitrepos.fleet.cattle.io +spec: + additionalPrinterColumns: + - JSONPath: .spec.repo + name: Repo + type: string + - JSONPath: .status.commit + name: Commit + type: string + - JSONPath: .status.display.readyBundleDeployments + name: BundleDeployments-Ready + type: string + - JSONPath: .status.conditions[?(@.type=="Ready")].message + name: Status + type: string + group: fleet.cattle.io + names: + categories: + - fleet + kind: GitRepo + plural: gitrepos + singular: gitrepo + scope: Namespaced + subresources: + status: {} + validation: + openAPIV3Schema: + properties: + spec: + properties: + branch: + nullable: true + type: string + caBundle: + nullable: true + type: string + clientSecretName: + nullable: true + type: string + forceSyncGeneration: + type: integer + helmSecretName: + nullable: true + type: string + insecureSkipTLSVerify: + type: boolean + paths: + items: + nullable: true + type: string + nullable: true + type: array + paused: + type: boolean + pollingInterval: + nullable: true + type: string + repo: + nullable: true + type: string + revision: + nullable: true + type: string + serviceAccount: + nullable: true + type: string + targetNamespace: + nullable: true + type: string + targets: + items: + properties: + clusterGroup: + nullable: true + type: string + clusterGroupSelector: + nullable: true + properties: + matchExpressions: + items: + properties: + key: + nullable: true + type: string + operator: + nullable: true + type: string + values: + items: + nullable: true + type: string + nullable: true + type: array + type: object + nullable: true + type: array + matchLabels: + additionalProperties: + nullable: true + type: string + nullable: true + type: object + type: object + clusterName: + nullable: true + type: string + clusterSelector: + nullable: true + properties: + matchExpressions: + items: + properties: + key: + nullable: true + type: string + operator: + nullable: true + type: string + values: + items: + nullable: true + type: string + nullable: true + type: array + type: object + nullable: true + type: array + matchLabels: + additionalProperties: + nullable: true + type: string + nullable: true + type: object + type: object + name: + nullable: true + type: string + type: object + nullable: true + type: array + type: object + status: + properties: + commit: + 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 + desiredReadyClusters: + type: integer + display: + properties: + error: + type: boolean + message: + nullable: true + type: string + readyBundleDeployments: + nullable: true + type: string + state: + nullable: true + type: string + type: object + gitJobStatus: + nullable: true + type: string + observedGeneration: + type: integer + readyClusters: + type: integer + resourceCounts: + properties: + desiredReady: + type: integer + missing: + type: integer + modified: + type: integer + notReady: + type: integer + orphaned: + type: integer + ready: + type: integer + unknown: + type: integer + waitApplied: + type: integer + type: object + resourceErrors: + items: + nullable: true + type: string + nullable: true + type: array + resources: + items: + properties: + apiVersion: + nullable: true + type: string + error: + type: boolean + id: + nullable: true + type: string + incompleteState: + type: boolean + kind: + nullable: true + type: string + message: + nullable: true + type: string + name: + nullable: true + type: string + namespace: + nullable: true + type: string + perClusterState: + items: + properties: + clusterId: + nullable: true + type: string + error: + type: boolean + message: + nullable: true + type: string + patch: + nullable: true + type: object + state: + nullable: true + type: string + transitioning: + type: boolean + type: object + nullable: true + type: array + state: + nullable: true + type: string + transitioning: + type: boolean + type: + nullable: true + type: string + type: object + nullable: true + type: array + summary: + properties: + desiredReady: + type: integer + errApplied: + type: integer + modified: + type: integer + nonReadyResources: + items: + properties: + bundleState: + nullable: true + type: string + message: + nullable: true + type: string + modifiedStatus: + items: + properties: + apiVersion: + nullable: true + type: string + delete: + type: boolean + kind: + nullable: true + type: string + missing: + type: boolean + name: + nullable: true + type: string + namespace: + nullable: true + type: string + patch: + nullable: true + type: string + type: object + nullable: true + type: array + name: + nullable: true + type: string + nonReadyStatus: + items: + properties: + apiVersion: + nullable: true + type: string + kind: + nullable: true + type: string + name: + nullable: true + type: string + namespace: + nullable: true + type: string + summary: + properties: + error: + type: boolean + message: + items: + nullable: true + type: string + nullable: true + type: array + state: + nullable: true + type: string + transitioning: + type: boolean + type: object + uid: + nullable: true + type: string + type: object + nullable: true + type: array + type: object + nullable: true + type: array + notReady: + type: integer + outOfSync: + type: integer + pending: + type: integer + ready: + type: integer + waitApplied: + type: integer + type: object + type: object + type: object + version: v1alpha1 + versions: + - name: v1alpha1 + served: true + storage: true + +--- +apiVersion: apiextensions.k8s.io/v1beta1 +kind: CustomResourceDefinition +metadata: + name: clusterregistrations.fleet.cattle.io +spec: + additionalPrinterColumns: + - JSONPath: .status.clusterName + name: Cluster-Name + type: string + - JSONPath: .spec.clusterLabels + name: Labels + type: string + group: fleet.cattle.io + names: + kind: ClusterRegistration + plural: clusterregistrations + singular: clusterregistration + scope: Namespaced + subresources: + status: {} + validation: + openAPIV3Schema: + properties: + spec: + properties: + clientID: + nullable: true + type: string + clientRandom: + nullable: true + type: string + clusterLabels: + additionalProperties: + nullable: true + type: string + nullable: true + type: object + type: object + status: + properties: + clusterName: + nullable: true + type: string + granted: + type: boolean + type: object + type: object + version: v1alpha1 + versions: + - name: v1alpha1 + served: true + storage: true + +--- +apiVersion: apiextensions.k8s.io/v1beta1 +kind: CustomResourceDefinition +metadata: + name: gitreporestrictions.fleet.cattle.io +spec: + additionalPrinterColumns: + - JSONPath: .defaultServiceAccount + name: Default-ServiceAccount + type: string + - JSONPath: .allowedServiceAccounts + name: Allowed-ServiceAccounts + type: string + group: fleet.cattle.io + names: + kind: GitRepoRestriction + plural: gitreporestrictions + singular: gitreporestriction + scope: Namespaced + subresources: + status: {} + validation: + openAPIV3Schema: + properties: + allowedClientSecretNames: + items: + nullable: true + type: string + nullable: true + type: array + allowedRepoPatterns: + items: + nullable: true + type: string + nullable: true + type: array + allowedServiceAccounts: + items: + nullable: true + type: string + nullable: true + type: array + defaultClientSecretName: + nullable: true + type: string + defaultServiceAccount: + nullable: true + type: string + type: object + version: v1alpha1 + versions: + - name: v1alpha1 + served: true + storage: true + +--- +apiVersion: apiextensions.k8s.io/v1beta1 +kind: CustomResourceDefinition +metadata: + name: contents.fleet.cattle.io +spec: + group: fleet.cattle.io + names: + kind: Content + plural: contents + singular: content + scope: Cluster + validation: + openAPIV3Schema: + properties: + content: + nullable: true + type: string + type: object + version: v1alpha1 + versions: + - name: v1alpha1 + served: true + storage: true diff --git a/charts/fleet-crd/fleet-crd/0.3.500-rc08/templates/gitjobs-crds.yaml b/charts/fleet-crd/fleet-crd/0.3.500-rc08/templates/gitjobs-crds.yaml new file mode 100755 index 000000000..2c26f79ff --- /dev/null +++ b/charts/fleet-crd/fleet-crd/0.3.500-rc08/templates/gitjobs-crds.yaml @@ -0,0 +1,3208 @@ +apiVersion: apiextensions.k8s.io/v1beta1 +kind: CustomResourceDefinition +metadata: + name: gitjobs.gitjob.cattle.io +spec: + additionalPrinterColumns: + - JSONPath: .spec.git.repo + name: REPO + type: string + - JSONPath: .spec.git.branch + name: BRANCH + type: string + - JSONPath: .status.commit + name: COMMIT + type: string + - JSONPath: .status.jobStatus + name: JOBSTATUS + type: string + - JSONPath: .metadata.creationTimestamp + name: Age + type: date + group: gitjob.cattle.io + names: + kind: GitJob + plural: gitjobs + scope: Namespaced + subresources: + status: {} + validation: + openAPIV3Schema: + properties: + spec: + properties: + forceUpdateGeneration: + type: integer + git: + properties: + branch: + nullable: true + type: string + caBundle: + nullable: true + type: string + clientSecretName: + nullable: true + type: string + insecureSkipTLSVerify: + type: boolean + provider: + nullable: true + type: string + repo: + nullable: true + type: string + revision: + nullable: true + type: string + secret: + nullable: true + type: string + type: object + jobSpec: + properties: + activeDeadlineSeconds: + nullable: true + type: integer + backoffLimit: + nullable: true + type: integer + completions: + nullable: true + type: integer + manualSelector: + nullable: true + type: boolean + parallelism: + nullable: true + type: integer + selector: + nullable: true + properties: + matchExpressions: + items: + properties: + key: + nullable: true + type: string + operator: + nullable: true + type: string + values: + items: + nullable: true + type: string + nullable: true + type: array + type: object + nullable: true + type: array + matchLabels: + additionalProperties: + nullable: true + type: string + nullable: true + type: object + type: object + template: + properties: + metadata: + properties: + annotations: + additionalProperties: + nullable: true + type: string + nullable: true + type: object + clusterName: + nullable: true + type: string + creationTimestamp: + nullable: true + type: string + deletionGracePeriodSeconds: + nullable: true + type: integer + deletionTimestamp: + nullable: true + type: string + finalizers: + items: + nullable: true + type: string + nullable: true + type: array + generateName: + nullable: true + type: string + generation: + type: integer + labels: + additionalProperties: + nullable: true + type: string + nullable: true + type: object + managedFields: + items: + properties: + apiVersion: + nullable: true + type: string + fieldsType: + nullable: true + type: string + fieldsV1: + nullable: true + type: object + manager: + nullable: true + type: string + operation: + nullable: true + type: string + time: + nullable: true + type: string + type: object + nullable: true + type: array + name: + nullable: true + type: string + namespace: + nullable: true + type: string + ownerReferences: + items: + properties: + apiVersion: + nullable: true + type: string + blockOwnerDeletion: + nullable: true + type: boolean + controller: + nullable: true + type: boolean + kind: + nullable: true + type: string + name: + nullable: true + type: string + uid: + nullable: true + type: string + type: object + nullable: true + type: array + resourceVersion: + nullable: true + type: string + selfLink: + nullable: true + type: string + uid: + nullable: true + type: string + type: object + spec: + properties: + activeDeadlineSeconds: + nullable: true + type: integer + affinity: + nullable: true + properties: + nodeAffinity: + nullable: true + properties: + preferredDuringSchedulingIgnoredDuringExecution: + items: + properties: + preference: + properties: + matchExpressions: + items: + properties: + key: + nullable: true + type: string + operator: + nullable: true + type: string + values: + items: + nullable: true + type: string + nullable: true + type: array + type: object + nullable: true + type: array + matchFields: + items: + properties: + key: + nullable: true + type: string + operator: + nullable: true + type: string + values: + items: + nullable: true + type: string + nullable: true + type: array + type: object + nullable: true + type: array + type: object + weight: + type: integer + type: object + nullable: true + type: array + requiredDuringSchedulingIgnoredDuringExecution: + nullable: true + properties: + nodeSelectorTerms: + items: + properties: + matchExpressions: + items: + properties: + key: + nullable: true + type: string + operator: + nullable: true + type: string + values: + items: + nullable: true + type: string + nullable: true + type: array + type: object + nullable: true + type: array + matchFields: + items: + properties: + key: + nullable: true + type: string + operator: + nullable: true + type: string + values: + items: + nullable: true + type: string + nullable: true + type: array + type: object + nullable: true + type: array + type: object + nullable: true + type: array + type: object + type: object + podAffinity: + nullable: true + properties: + preferredDuringSchedulingIgnoredDuringExecution: + items: + properties: + podAffinityTerm: + properties: + labelSelector: + nullable: true + properties: + matchExpressions: + items: + properties: + key: + nullable: true + type: string + operator: + nullable: true + type: string + values: + items: + nullable: true + type: string + nullable: true + type: array + type: object + nullable: true + type: array + matchLabels: + additionalProperties: + nullable: true + type: string + nullable: true + type: object + type: object + namespaces: + items: + nullable: true + type: string + nullable: true + type: array + topologyKey: + nullable: true + type: string + type: object + weight: + type: integer + type: object + nullable: true + type: array + requiredDuringSchedulingIgnoredDuringExecution: + items: + properties: + labelSelector: + nullable: true + properties: + matchExpressions: + items: + properties: + key: + nullable: true + type: string + operator: + nullable: true + type: string + values: + items: + nullable: true + type: string + nullable: true + type: array + type: object + nullable: true + type: array + matchLabels: + additionalProperties: + nullable: true + type: string + nullable: true + type: object + type: object + namespaces: + items: + nullable: true + type: string + nullable: true + type: array + topologyKey: + nullable: true + type: string + type: object + nullable: true + type: array + type: object + podAntiAffinity: + nullable: true + properties: + preferredDuringSchedulingIgnoredDuringExecution: + items: + properties: + podAffinityTerm: + properties: + labelSelector: + nullable: true + properties: + matchExpressions: + items: + properties: + key: + nullable: true + type: string + operator: + nullable: true + type: string + values: + items: + nullable: true + type: string + nullable: true + type: array + type: object + nullable: true + type: array + matchLabels: + additionalProperties: + nullable: true + type: string + nullable: true + type: object + type: object + namespaces: + items: + nullable: true + type: string + nullable: true + type: array + topologyKey: + nullable: true + type: string + type: object + weight: + type: integer + type: object + nullable: true + type: array + requiredDuringSchedulingIgnoredDuringExecution: + items: + properties: + labelSelector: + nullable: true + properties: + matchExpressions: + items: + properties: + key: + nullable: true + type: string + operator: + nullable: true + type: string + values: + items: + nullable: true + type: string + nullable: true + type: array + type: object + nullable: true + type: array + matchLabels: + additionalProperties: + nullable: true + type: string + nullable: true + type: object + type: object + namespaces: + items: + nullable: true + type: string + nullable: true + type: array + topologyKey: + nullable: true + type: string + type: object + nullable: true + type: array + type: object + type: object + automountServiceAccountToken: + nullable: true + type: boolean + containers: + items: + properties: + args: + items: + nullable: true + type: string + nullable: true + type: array + command: + items: + nullable: true + type: string + nullable: true + type: array + env: + items: + properties: + name: + nullable: true + type: string + value: + nullable: true + type: string + valueFrom: + nullable: true + properties: + configMapKeyRef: + nullable: true + properties: + key: + nullable: true + type: string + name: + nullable: true + type: string + optional: + nullable: true + type: boolean + type: object + fieldRef: + nullable: true + properties: + apiVersion: + nullable: true + type: string + fieldPath: + nullable: true + type: string + type: object + resourceFieldRef: + nullable: true + properties: + containerName: + nullable: true + type: string + divisor: + nullable: true + type: string + resource: + nullable: true + type: string + type: object + secretKeyRef: + nullable: true + properties: + key: + nullable: true + type: string + name: + nullable: true + type: string + optional: + nullable: true + type: boolean + type: object + type: object + type: object + nullable: true + type: array + envFrom: + items: + properties: + configMapRef: + nullable: true + properties: + name: + nullable: true + type: string + optional: + nullable: true + type: boolean + type: object + prefix: + nullable: true + type: string + secretRef: + nullable: true + properties: + name: + nullable: true + type: string + optional: + nullable: true + type: boolean + type: object + type: object + nullable: true + type: array + image: + nullable: true + type: string + imagePullPolicy: + nullable: true + type: string + lifecycle: + nullable: true + properties: + postStart: + nullable: true + properties: + exec: + nullable: true + properties: + command: + items: + nullable: true + type: string + nullable: true + type: array + type: object + httpGet: + nullable: true + properties: + host: + nullable: true + type: string + httpHeaders: + items: + properties: + name: + nullable: true + type: string + value: + nullable: true + type: string + type: object + nullable: true + type: array + path: + nullable: true + type: string + port: + nullable: true + type: string + scheme: + nullable: true + type: string + type: object + tcpSocket: + nullable: true + properties: + host: + nullable: true + type: string + port: + nullable: true + type: string + type: object + type: object + preStop: + nullable: true + properties: + exec: + nullable: true + properties: + command: + items: + nullable: true + type: string + nullable: true + type: array + type: object + httpGet: + nullable: true + properties: + host: + nullable: true + type: string + httpHeaders: + items: + properties: + name: + nullable: true + type: string + value: + nullable: true + type: string + type: object + nullable: true + type: array + path: + nullable: true + type: string + port: + nullable: true + type: string + scheme: + nullable: true + type: string + type: object + tcpSocket: + nullable: true + properties: + host: + nullable: true + type: string + port: + nullable: true + type: string + type: object + type: object + type: object + livenessProbe: + nullable: true + properties: + exec: + nullable: true + properties: + command: + items: + nullable: true + type: string + nullable: true + type: array + type: object + failureThreshold: + type: integer + httpGet: + nullable: true + properties: + host: + nullable: true + type: string + httpHeaders: + items: + properties: + name: + nullable: true + type: string + value: + nullable: true + type: string + type: object + nullable: true + type: array + path: + nullable: true + type: string + port: + nullable: true + type: string + scheme: + nullable: true + type: string + type: object + initialDelaySeconds: + type: integer + periodSeconds: + type: integer + successThreshold: + type: integer + tcpSocket: + nullable: true + properties: + host: + nullable: true + type: string + port: + nullable: true + type: string + type: object + timeoutSeconds: + type: integer + type: object + name: + nullable: true + type: string + ports: + items: + properties: + containerPort: + type: integer + hostIP: + nullable: true + type: string + hostPort: + type: integer + name: + nullable: true + type: string + protocol: + nullable: true + type: string + type: object + nullable: true + type: array + readinessProbe: + nullable: true + properties: + exec: + nullable: true + properties: + command: + items: + nullable: true + type: string + nullable: true + type: array + type: object + failureThreshold: + type: integer + httpGet: + nullable: true + properties: + host: + nullable: true + type: string + httpHeaders: + items: + properties: + name: + nullable: true + type: string + value: + nullable: true + type: string + type: object + nullable: true + type: array + path: + nullable: true + type: string + port: + nullable: true + type: string + scheme: + nullable: true + type: string + type: object + initialDelaySeconds: + type: integer + periodSeconds: + type: integer + successThreshold: + type: integer + tcpSocket: + nullable: true + properties: + host: + nullable: true + type: string + port: + nullable: true + type: string + type: object + timeoutSeconds: + type: integer + type: object + resources: + properties: + limits: + additionalProperties: + nullable: true + type: string + nullable: true + type: object + requests: + additionalProperties: + nullable: true + type: string + nullable: true + type: object + type: object + securityContext: + nullable: true + properties: + allowPrivilegeEscalation: + nullable: true + type: boolean + capabilities: + nullable: true + properties: + add: + items: + nullable: true + type: string + nullable: true + type: array + drop: + items: + nullable: true + type: string + nullable: true + type: array + type: object + privileged: + nullable: true + type: boolean + procMount: + nullable: true + type: string + readOnlyRootFilesystem: + nullable: true + type: boolean + runAsGroup: + nullable: true + type: integer + runAsNonRoot: + nullable: true + type: boolean + runAsUser: + nullable: true + type: integer + seLinuxOptions: + nullable: true + properties: + level: + nullable: true + type: string + role: + nullable: true + type: string + type: + nullable: true + type: string + user: + nullable: true + type: string + type: object + windowsOptions: + nullable: true + properties: + gmsaCredentialSpec: + nullable: true + type: string + gmsaCredentialSpecName: + nullable: true + type: string + runAsUserName: + nullable: true + type: string + type: object + type: object + startupProbe: + nullable: true + properties: + exec: + nullable: true + properties: + command: + items: + nullable: true + type: string + nullable: true + type: array + type: object + failureThreshold: + type: integer + httpGet: + nullable: true + properties: + host: + nullable: true + type: string + httpHeaders: + items: + properties: + name: + nullable: true + type: string + value: + nullable: true + type: string + type: object + nullable: true + type: array + path: + nullable: true + type: string + port: + nullable: true + type: string + scheme: + nullable: true + type: string + type: object + initialDelaySeconds: + type: integer + periodSeconds: + type: integer + successThreshold: + type: integer + tcpSocket: + nullable: true + properties: + host: + nullable: true + type: string + port: + nullable: true + type: string + type: object + timeoutSeconds: + type: integer + type: object + stdin: + type: boolean + stdinOnce: + type: boolean + terminationMessagePath: + nullable: true + type: string + terminationMessagePolicy: + nullable: true + type: string + tty: + type: boolean + volumeDevices: + items: + properties: + devicePath: + nullable: true + type: string + name: + nullable: true + type: string + type: object + nullable: true + type: array + volumeMounts: + items: + properties: + mountPath: + nullable: true + type: string + mountPropagation: + nullable: true + type: string + name: + nullable: true + type: string + readOnly: + type: boolean + subPath: + nullable: true + type: string + subPathExpr: + nullable: true + type: string + type: object + nullable: true + type: array + workingDir: + nullable: true + type: string + type: object + nullable: true + type: array + dnsConfig: + nullable: true + properties: + nameservers: + items: + nullable: true + type: string + nullable: true + type: array + options: + items: + properties: + name: + nullable: true + type: string + value: + nullable: true + type: string + type: object + nullable: true + type: array + searches: + items: + nullable: true + type: string + nullable: true + type: array + type: object + dnsPolicy: + nullable: true + type: string + enableServiceLinks: + nullable: true + type: boolean + ephemeralContainers: + items: + properties: + args: + items: + nullable: true + type: string + nullable: true + type: array + command: + items: + nullable: true + type: string + nullable: true + type: array + env: + items: + properties: + name: + nullable: true + type: string + value: + nullable: true + type: string + valueFrom: + nullable: true + properties: + configMapKeyRef: + nullable: true + properties: + key: + nullable: true + type: string + name: + nullable: true + type: string + optional: + nullable: true + type: boolean + type: object + fieldRef: + nullable: true + properties: + apiVersion: + nullable: true + type: string + fieldPath: + nullable: true + type: string + type: object + resourceFieldRef: + nullable: true + properties: + containerName: + nullable: true + type: string + divisor: + nullable: true + type: string + resource: + nullable: true + type: string + type: object + secretKeyRef: + nullable: true + properties: + key: + nullable: true + type: string + name: + nullable: true + type: string + optional: + nullable: true + type: boolean + type: object + type: object + type: object + nullable: true + type: array + envFrom: + items: + properties: + configMapRef: + nullable: true + properties: + name: + nullable: true + type: string + optional: + nullable: true + type: boolean + type: object + prefix: + nullable: true + type: string + secretRef: + nullable: true + properties: + name: + nullable: true + type: string + optional: + nullable: true + type: boolean + type: object + type: object + nullable: true + type: array + image: + nullable: true + type: string + imagePullPolicy: + nullable: true + type: string + lifecycle: + nullable: true + properties: + postStart: + nullable: true + properties: + exec: + nullable: true + properties: + command: + items: + nullable: true + type: string + nullable: true + type: array + type: object + httpGet: + nullable: true + properties: + host: + nullable: true + type: string + httpHeaders: + items: + properties: + name: + nullable: true + type: string + value: + nullable: true + type: string + type: object + nullable: true + type: array + path: + nullable: true + type: string + port: + nullable: true + type: string + scheme: + nullable: true + type: string + type: object + tcpSocket: + nullable: true + properties: + host: + nullable: true + type: string + port: + nullable: true + type: string + type: object + type: object + preStop: + nullable: true + properties: + exec: + nullable: true + properties: + command: + items: + nullable: true + type: string + nullable: true + type: array + type: object + httpGet: + nullable: true + properties: + host: + nullable: true + type: string + httpHeaders: + items: + properties: + name: + nullable: true + type: string + value: + nullable: true + type: string + type: object + nullable: true + type: array + path: + nullable: true + type: string + port: + nullable: true + type: string + scheme: + nullable: true + type: string + type: object + tcpSocket: + nullable: true + properties: + host: + nullable: true + type: string + port: + nullable: true + type: string + type: object + type: object + type: object + livenessProbe: + nullable: true + properties: + exec: + nullable: true + properties: + command: + items: + nullable: true + type: string + nullable: true + type: array + type: object + failureThreshold: + type: integer + httpGet: + nullable: true + properties: + host: + nullable: true + type: string + httpHeaders: + items: + properties: + name: + nullable: true + type: string + value: + nullable: true + type: string + type: object + nullable: true + type: array + path: + nullable: true + type: string + port: + nullable: true + type: string + scheme: + nullable: true + type: string + type: object + initialDelaySeconds: + type: integer + periodSeconds: + type: integer + successThreshold: + type: integer + tcpSocket: + nullable: true + properties: + host: + nullable: true + type: string + port: + nullable: true + type: string + type: object + timeoutSeconds: + type: integer + type: object + name: + nullable: true + type: string + ports: + items: + properties: + containerPort: + type: integer + hostIP: + nullable: true + type: string + hostPort: + type: integer + name: + nullable: true + type: string + protocol: + nullable: true + type: string + type: object + nullable: true + type: array + readinessProbe: + nullable: true + properties: + exec: + nullable: true + properties: + command: + items: + nullable: true + type: string + nullable: true + type: array + type: object + failureThreshold: + type: integer + httpGet: + nullable: true + properties: + host: + nullable: true + type: string + httpHeaders: + items: + properties: + name: + nullable: true + type: string + value: + nullable: true + type: string + type: object + nullable: true + type: array + path: + nullable: true + type: string + port: + nullable: true + type: string + scheme: + nullable: true + type: string + type: object + initialDelaySeconds: + type: integer + periodSeconds: + type: integer + successThreshold: + type: integer + tcpSocket: + nullable: true + properties: + host: + nullable: true + type: string + port: + nullable: true + type: string + type: object + timeoutSeconds: + type: integer + type: object + resources: + properties: + limits: + additionalProperties: + nullable: true + type: string + nullable: true + type: object + requests: + additionalProperties: + nullable: true + type: string + nullable: true + type: object + type: object + securityContext: + nullable: true + properties: + allowPrivilegeEscalation: + nullable: true + type: boolean + capabilities: + nullable: true + properties: + add: + items: + nullable: true + type: string + nullable: true + type: array + drop: + items: + nullable: true + type: string + nullable: true + type: array + type: object + privileged: + nullable: true + type: boolean + procMount: + nullable: true + type: string + readOnlyRootFilesystem: + nullable: true + type: boolean + runAsGroup: + nullable: true + type: integer + runAsNonRoot: + nullable: true + type: boolean + runAsUser: + nullable: true + type: integer + seLinuxOptions: + nullable: true + properties: + level: + nullable: true + type: string + role: + nullable: true + type: string + type: + nullable: true + type: string + user: + nullable: true + type: string + type: object + windowsOptions: + nullable: true + properties: + gmsaCredentialSpec: + nullable: true + type: string + gmsaCredentialSpecName: + nullable: true + type: string + runAsUserName: + nullable: true + type: string + type: object + type: object + startupProbe: + nullable: true + properties: + exec: + nullable: true + properties: + command: + items: + nullable: true + type: string + nullable: true + type: array + type: object + failureThreshold: + type: integer + httpGet: + nullable: true + properties: + host: + nullable: true + type: string + httpHeaders: + items: + properties: + name: + nullable: true + type: string + value: + nullable: true + type: string + type: object + nullable: true + type: array + path: + nullable: true + type: string + port: + nullable: true + type: string + scheme: + nullable: true + type: string + type: object + initialDelaySeconds: + type: integer + periodSeconds: + type: integer + successThreshold: + type: integer + tcpSocket: + nullable: true + properties: + host: + nullable: true + type: string + port: + nullable: true + type: string + type: object + timeoutSeconds: + type: integer + type: object + stdin: + type: boolean + stdinOnce: + type: boolean + targetContainerName: + nullable: true + type: string + terminationMessagePath: + nullable: true + type: string + terminationMessagePolicy: + nullable: true + type: string + tty: + type: boolean + volumeDevices: + items: + properties: + devicePath: + nullable: true + type: string + name: + nullable: true + type: string + type: object + nullable: true + type: array + volumeMounts: + items: + properties: + mountPath: + nullable: true + type: string + mountPropagation: + nullable: true + type: string + name: + nullable: true + type: string + readOnly: + type: boolean + subPath: + nullable: true + type: string + subPathExpr: + nullable: true + type: string + type: object + nullable: true + type: array + workingDir: + nullable: true + type: string + type: object + nullable: true + type: array + hostAliases: + items: + properties: + hostnames: + items: + nullable: true + type: string + nullable: true + type: array + ip: + nullable: true + type: string + type: object + nullable: true + type: array + hostIPC: + type: boolean + hostNetwork: + type: boolean + hostPID: + type: boolean + hostname: + nullable: true + type: string + imagePullSecrets: + items: + properties: + name: + nullable: true + type: string + type: object + nullable: true + type: array + initContainers: + items: + properties: + args: + items: + nullable: true + type: string + nullable: true + type: array + command: + items: + nullable: true + type: string + nullable: true + type: array + env: + items: + properties: + name: + nullable: true + type: string + value: + nullable: true + type: string + valueFrom: + nullable: true + properties: + configMapKeyRef: + nullable: true + properties: + key: + nullable: true + type: string + name: + nullable: true + type: string + optional: + nullable: true + type: boolean + type: object + fieldRef: + nullable: true + properties: + apiVersion: + nullable: true + type: string + fieldPath: + nullable: true + type: string + type: object + resourceFieldRef: + nullable: true + properties: + containerName: + nullable: true + type: string + divisor: + nullable: true + type: string + resource: + nullable: true + type: string + type: object + secretKeyRef: + nullable: true + properties: + key: + nullable: true + type: string + name: + nullable: true + type: string + optional: + nullable: true + type: boolean + type: object + type: object + type: object + nullable: true + type: array + envFrom: + items: + properties: + configMapRef: + nullable: true + properties: + name: + nullable: true + type: string + optional: + nullable: true + type: boolean + type: object + prefix: + nullable: true + type: string + secretRef: + nullable: true + properties: + name: + nullable: true + type: string + optional: + nullable: true + type: boolean + type: object + type: object + nullable: true + type: array + image: + nullable: true + type: string + imagePullPolicy: + nullable: true + type: string + lifecycle: + nullable: true + properties: + postStart: + nullable: true + properties: + exec: + nullable: true + properties: + command: + items: + nullable: true + type: string + nullable: true + type: array + type: object + httpGet: + nullable: true + properties: + host: + nullable: true + type: string + httpHeaders: + items: + properties: + name: + nullable: true + type: string + value: + nullable: true + type: string + type: object + nullable: true + type: array + path: + nullable: true + type: string + port: + nullable: true + type: string + scheme: + nullable: true + type: string + type: object + tcpSocket: + nullable: true + properties: + host: + nullable: true + type: string + port: + nullable: true + type: string + type: object + type: object + preStop: + nullable: true + properties: + exec: + nullable: true + properties: + command: + items: + nullable: true + type: string + nullable: true + type: array + type: object + httpGet: + nullable: true + properties: + host: + nullable: true + type: string + httpHeaders: + items: + properties: + name: + nullable: true + type: string + value: + nullable: true + type: string + type: object + nullable: true + type: array + path: + nullable: true + type: string + port: + nullable: true + type: string + scheme: + nullable: true + type: string + type: object + tcpSocket: + nullable: true + properties: + host: + nullable: true + type: string + port: + nullable: true + type: string + type: object + type: object + type: object + livenessProbe: + nullable: true + properties: + exec: + nullable: true + properties: + command: + items: + nullable: true + type: string + nullable: true + type: array + type: object + failureThreshold: + type: integer + httpGet: + nullable: true + properties: + host: + nullable: true + type: string + httpHeaders: + items: + properties: + name: + nullable: true + type: string + value: + nullable: true + type: string + type: object + nullable: true + type: array + path: + nullable: true + type: string + port: + nullable: true + type: string + scheme: + nullable: true + type: string + type: object + initialDelaySeconds: + type: integer + periodSeconds: + type: integer + successThreshold: + type: integer + tcpSocket: + nullable: true + properties: + host: + nullable: true + type: string + port: + nullable: true + type: string + type: object + timeoutSeconds: + type: integer + type: object + name: + nullable: true + type: string + ports: + items: + properties: + containerPort: + type: integer + hostIP: + nullable: true + type: string + hostPort: + type: integer + name: + nullable: true + type: string + protocol: + nullable: true + type: string + type: object + nullable: true + type: array + readinessProbe: + nullable: true + properties: + exec: + nullable: true + properties: + command: + items: + nullable: true + type: string + nullable: true + type: array + type: object + failureThreshold: + type: integer + httpGet: + nullable: true + properties: + host: + nullable: true + type: string + httpHeaders: + items: + properties: + name: + nullable: true + type: string + value: + nullable: true + type: string + type: object + nullable: true + type: array + path: + nullable: true + type: string + port: + nullable: true + type: string + scheme: + nullable: true + type: string + type: object + initialDelaySeconds: + type: integer + periodSeconds: + type: integer + successThreshold: + type: integer + tcpSocket: + nullable: true + properties: + host: + nullable: true + type: string + port: + nullable: true + type: string + type: object + timeoutSeconds: + type: integer + type: object + resources: + properties: + limits: + additionalProperties: + nullable: true + type: string + nullable: true + type: object + requests: + additionalProperties: + nullable: true + type: string + nullable: true + type: object + type: object + securityContext: + nullable: true + properties: + allowPrivilegeEscalation: + nullable: true + type: boolean + capabilities: + nullable: true + properties: + add: + items: + nullable: true + type: string + nullable: true + type: array + drop: + items: + nullable: true + type: string + nullable: true + type: array + type: object + privileged: + nullable: true + type: boolean + procMount: + nullable: true + type: string + readOnlyRootFilesystem: + nullable: true + type: boolean + runAsGroup: + nullable: true + type: integer + runAsNonRoot: + nullable: true + type: boolean + runAsUser: + nullable: true + type: integer + seLinuxOptions: + nullable: true + properties: + level: + nullable: true + type: string + role: + nullable: true + type: string + type: + nullable: true + type: string + user: + nullable: true + type: string + type: object + windowsOptions: + nullable: true + properties: + gmsaCredentialSpec: + nullable: true + type: string + gmsaCredentialSpecName: + nullable: true + type: string + runAsUserName: + nullable: true + type: string + type: object + type: object + startupProbe: + nullable: true + properties: + exec: + nullable: true + properties: + command: + items: + nullable: true + type: string + nullable: true + type: array + type: object + failureThreshold: + type: integer + httpGet: + nullable: true + properties: + host: + nullable: true + type: string + httpHeaders: + items: + properties: + name: + nullable: true + type: string + value: + nullable: true + type: string + type: object + nullable: true + type: array + path: + nullable: true + type: string + port: + nullable: true + type: string + scheme: + nullable: true + type: string + type: object + initialDelaySeconds: + type: integer + periodSeconds: + type: integer + successThreshold: + type: integer + tcpSocket: + nullable: true + properties: + host: + nullable: true + type: string + port: + nullable: true + type: string + type: object + timeoutSeconds: + type: integer + type: object + stdin: + type: boolean + stdinOnce: + type: boolean + terminationMessagePath: + nullable: true + type: string + terminationMessagePolicy: + nullable: true + type: string + tty: + type: boolean + volumeDevices: + items: + properties: + devicePath: + nullable: true + type: string + name: + nullable: true + type: string + type: object + nullable: true + type: array + volumeMounts: + items: + properties: + mountPath: + nullable: true + type: string + mountPropagation: + nullable: true + type: string + name: + nullable: true + type: string + readOnly: + type: boolean + subPath: + nullable: true + type: string + subPathExpr: + nullable: true + type: string + type: object + nullable: true + type: array + workingDir: + nullable: true + type: string + type: object + nullable: true + type: array + nodeName: + nullable: true + type: string + nodeSelector: + additionalProperties: + nullable: true + type: string + nullable: true + type: object + overhead: + additionalProperties: + nullable: true + type: string + nullable: true + type: object + preemptionPolicy: + nullable: true + type: string + priority: + nullable: true + type: integer + priorityClassName: + nullable: true + type: string + readinessGates: + items: + properties: + conditionType: + nullable: true + type: string + type: object + nullable: true + type: array + restartPolicy: + nullable: true + type: string + runtimeClassName: + nullable: true + type: string + schedulerName: + nullable: true + type: string + securityContext: + nullable: true + properties: + fsGroup: + nullable: true + type: integer + fsGroupChangePolicy: + nullable: true + type: string + runAsGroup: + nullable: true + type: integer + runAsNonRoot: + nullable: true + type: boolean + runAsUser: + nullable: true + type: integer + seLinuxOptions: + nullable: true + properties: + level: + nullable: true + type: string + role: + nullable: true + type: string + type: + nullable: true + type: string + user: + nullable: true + type: string + type: object + supplementalGroups: + items: + type: integer + nullable: true + type: array + sysctls: + items: + properties: + name: + nullable: true + type: string + value: + nullable: true + type: string + type: object + nullable: true + type: array + windowsOptions: + nullable: true + properties: + gmsaCredentialSpec: + nullable: true + type: string + gmsaCredentialSpecName: + nullable: true + type: string + runAsUserName: + nullable: true + type: string + type: object + type: object + serviceAccount: + nullable: true + type: string + serviceAccountName: + nullable: true + type: string + shareProcessNamespace: + nullable: true + type: boolean + subdomain: + nullable: true + type: string + terminationGracePeriodSeconds: + nullable: true + type: integer + tolerations: + items: + properties: + effect: + nullable: true + type: string + key: + nullable: true + type: string + operator: + nullable: true + type: string + tolerationSeconds: + nullable: true + type: integer + value: + nullable: true + type: string + type: object + nullable: true + type: array + topologySpreadConstraints: + items: + properties: + labelSelector: + nullable: true + properties: + matchExpressions: + items: + properties: + key: + nullable: true + type: string + operator: + nullable: true + type: string + values: + items: + nullable: true + type: string + nullable: true + type: array + type: object + nullable: true + type: array + matchLabels: + additionalProperties: + nullable: true + type: string + nullable: true + type: object + type: object + maxSkew: + type: integer + topologyKey: + nullable: true + type: string + whenUnsatisfiable: + nullable: true + type: string + type: object + nullable: true + type: array + volumes: + items: + properties: + awsElasticBlockStore: + nullable: true + properties: + fsType: + nullable: true + type: string + partition: + type: integer + readOnly: + type: boolean + volumeID: + nullable: true + type: string + type: object + azureDisk: + nullable: true + properties: + cachingMode: + nullable: true + type: string + diskName: + nullable: true + type: string + diskURI: + nullable: true + type: string + fsType: + nullable: true + type: string + kind: + nullable: true + type: string + readOnly: + nullable: true + type: boolean + type: object + azureFile: + nullable: true + properties: + readOnly: + type: boolean + secretName: + nullable: true + type: string + shareName: + nullable: true + type: string + type: object + cephfs: + nullable: true + properties: + monitors: + items: + nullable: true + type: string + nullable: true + type: array + path: + nullable: true + type: string + readOnly: + type: boolean + secretFile: + nullable: true + type: string + secretRef: + nullable: true + properties: + name: + nullable: true + type: string + type: object + user: + nullable: true + type: string + type: object + cinder: + nullable: true + properties: + fsType: + nullable: true + type: string + readOnly: + type: boolean + secretRef: + nullable: true + properties: + name: + nullable: true + type: string + type: object + volumeID: + nullable: true + type: string + type: object + configMap: + nullable: true + properties: + defaultMode: + nullable: true + type: integer + items: + items: + properties: + key: + nullable: true + type: string + mode: + nullable: true + type: integer + path: + nullable: true + type: string + type: object + nullable: true + type: array + name: + nullable: true + type: string + optional: + nullable: true + type: boolean + type: object + csi: + nullable: true + properties: + driver: + nullable: true + type: string + fsType: + nullable: true + type: string + nodePublishSecretRef: + nullable: true + properties: + name: + nullable: true + type: string + type: object + readOnly: + nullable: true + type: boolean + volumeAttributes: + additionalProperties: + nullable: true + type: string + nullable: true + type: object + type: object + downwardAPI: + nullable: true + properties: + defaultMode: + nullable: true + type: integer + items: + items: + properties: + fieldRef: + nullable: true + properties: + apiVersion: + nullable: true + type: string + fieldPath: + nullable: true + type: string + type: object + mode: + nullable: true + type: integer + path: + nullable: true + type: string + resourceFieldRef: + nullable: true + properties: + containerName: + nullable: true + type: string + divisor: + nullable: true + type: string + resource: + nullable: true + type: string + type: object + type: object + nullable: true + type: array + type: object + emptyDir: + nullable: true + properties: + medium: + nullable: true + type: string + sizeLimit: + nullable: true + type: string + type: object + fc: + nullable: true + properties: + fsType: + nullable: true + type: string + lun: + nullable: true + type: integer + readOnly: + type: boolean + targetWWNs: + items: + nullable: true + type: string + nullable: true + type: array + wwids: + items: + nullable: true + type: string + nullable: true + type: array + type: object + flexVolume: + nullable: true + properties: + driver: + nullable: true + type: string + fsType: + nullable: true + type: string + options: + additionalProperties: + nullable: true + type: string + nullable: true + type: object + readOnly: + type: boolean + secretRef: + nullable: true + properties: + name: + nullable: true + type: string + type: object + type: object + flocker: + nullable: true + properties: + datasetName: + nullable: true + type: string + datasetUUID: + nullable: true + type: string + type: object + gcePersistentDisk: + nullable: true + properties: + fsType: + nullable: true + type: string + partition: + type: integer + pdName: + nullable: true + type: string + readOnly: + type: boolean + type: object + gitRepo: + nullable: true + properties: + directory: + nullable: true + type: string + repository: + nullable: true + type: string + revision: + nullable: true + type: string + type: object + glusterfs: + nullable: true + properties: + endpoints: + nullable: true + type: string + path: + nullable: true + type: string + readOnly: + type: boolean + type: object + hostPath: + nullable: true + properties: + path: + nullable: true + type: string + type: + nullable: true + type: string + type: object + iscsi: + nullable: true + properties: + chapAuthDiscovery: + type: boolean + chapAuthSession: + type: boolean + fsType: + nullable: true + type: string + initiatorName: + nullable: true + type: string + iqn: + nullable: true + type: string + iscsiInterface: + nullable: true + type: string + lun: + type: integer + portals: + items: + nullable: true + type: string + nullable: true + type: array + readOnly: + type: boolean + secretRef: + nullable: true + properties: + name: + nullable: true + type: string + type: object + targetPortal: + nullable: true + type: string + type: object + name: + nullable: true + type: string + nfs: + nullable: true + properties: + path: + nullable: true + type: string + readOnly: + type: boolean + server: + nullable: true + type: string + type: object + persistentVolumeClaim: + nullable: true + properties: + claimName: + nullable: true + type: string + readOnly: + type: boolean + type: object + photonPersistentDisk: + nullable: true + properties: + fsType: + nullable: true + type: string + pdID: + nullable: true + type: string + type: object + portworxVolume: + nullable: true + properties: + fsType: + nullable: true + type: string + readOnly: + type: boolean + volumeID: + nullable: true + type: string + type: object + projected: + nullable: true + properties: + defaultMode: + nullable: true + type: integer + sources: + items: + properties: + configMap: + nullable: true + properties: + items: + items: + properties: + key: + nullable: true + type: string + mode: + nullable: true + type: integer + path: + nullable: true + type: string + type: object + nullable: true + type: array + name: + nullable: true + type: string + optional: + nullable: true + type: boolean + type: object + downwardAPI: + nullable: true + properties: + items: + items: + properties: + fieldRef: + nullable: true + properties: + apiVersion: + nullable: true + type: string + fieldPath: + nullable: true + type: string + type: object + mode: + nullable: true + type: integer + path: + nullable: true + type: string + resourceFieldRef: + nullable: true + properties: + containerName: + nullable: true + type: string + divisor: + nullable: true + type: string + resource: + nullable: true + type: string + type: object + type: object + nullable: true + type: array + type: object + secret: + nullable: true + properties: + items: + items: + properties: + key: + nullable: true + type: string + mode: + nullable: true + type: integer + path: + nullable: true + type: string + type: object + nullable: true + type: array + name: + nullable: true + type: string + optional: + nullable: true + type: boolean + type: object + serviceAccountToken: + nullable: true + properties: + audience: + nullable: true + type: string + expirationSeconds: + nullable: true + type: integer + path: + nullable: true + type: string + type: object + type: object + nullable: true + type: array + type: object + quobyte: + nullable: true + properties: + group: + nullable: true + type: string + readOnly: + type: boolean + registry: + nullable: true + type: string + tenant: + nullable: true + type: string + user: + nullable: true + type: string + volume: + nullable: true + type: string + type: object + rbd: + nullable: true + properties: + fsType: + nullable: true + type: string + image: + nullable: true + type: string + keyring: + nullable: true + type: string + monitors: + items: + nullable: true + type: string + nullable: true + type: array + pool: + nullable: true + type: string + readOnly: + type: boolean + secretRef: + nullable: true + properties: + name: + nullable: true + type: string + type: object + user: + nullable: true + type: string + type: object + scaleIO: + nullable: true + properties: + fsType: + nullable: true + type: string + gateway: + nullable: true + type: string + protectionDomain: + nullable: true + type: string + readOnly: + type: boolean + secretRef: + nullable: true + properties: + name: + nullable: true + type: string + type: object + sslEnabled: + type: boolean + storageMode: + nullable: true + type: string + storagePool: + nullable: true + type: string + system: + nullable: true + type: string + volumeName: + nullable: true + type: string + type: object + secret: + nullable: true + properties: + defaultMode: + nullable: true + type: integer + items: + items: + properties: + key: + nullable: true + type: string + mode: + nullable: true + type: integer + path: + nullable: true + type: string + type: object + nullable: true + type: array + optional: + nullable: true + type: boolean + secretName: + nullable: true + type: string + type: object + storageos: + nullable: true + properties: + fsType: + nullable: true + type: string + readOnly: + type: boolean + secretRef: + nullable: true + properties: + name: + nullable: true + type: string + type: object + volumeName: + nullable: true + type: string + volumeNamespace: + nullable: true + type: string + type: object + vsphereVolume: + nullable: true + properties: + fsType: + nullable: true + type: string + storagePolicyID: + nullable: true + type: string + storagePolicyName: + nullable: true + type: string + volumePath: + nullable: true + type: string + type: object + type: object + nullable: true + type: array + type: object + type: object + ttlSecondsAfterFinished: + nullable: true + type: integer + type: object + syncInterval: + type: integer + type: object + status: + properties: + commit: + 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 + event: + nullable: true + type: string + hookId: + nullable: true + type: string + jobStatus: + nullable: true + type: string + lastExecutedCommit: + nullable: true + type: string + observedGeneration: + type: integer + secretToken: + nullable: true + type: string + updateGeneration: + type: integer + type: object + type: object + version: v1 + versions: + - name: v1 + served: true + storage: true + diff --git a/charts/fleet/fleet/0.3.500-rc08/Chart.yaml b/charts/fleet/fleet/0.3.500-rc08/Chart.yaml new file mode 100755 index 000000000..445f33c25 --- /dev/null +++ b/charts/fleet/fleet/0.3.500-rc08/Chart.yaml @@ -0,0 +1,15 @@ +annotations: + catalog.cattle.io/auto-install: fleet-crd=match + catalog.cattle.io/certified: rancher + catalog.cattle.io/experimental: "true" + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: fleet-system + catalog.cattle.io/os: linux + catalog.cattle.io/provides-gvr: clusters.fleet.cattle.io/v1alpha1 + catalog.cattle.io/release-name: fleet +apiVersion: v2 +appVersion: 0.3.5 +description: Fleet Manager - GitOps at Scale +icon: https://charts.rancher.io/assets/logos/fleet.svg +name: fleet +version: 0.3.500-rc08 diff --git a/charts/fleet/fleet/0.3.500-rc08/charts/gitjob/.helmignore b/charts/fleet/fleet/0.3.500-rc08/charts/gitjob/.helmignore new file mode 100755 index 000000000..691fa13d6 --- /dev/null +++ b/charts/fleet/fleet/0.3.500-rc08/charts/gitjob/.helmignore @@ -0,0 +1,23 @@ +# Patterns to ignore when building packages. +# This supports shell glob matching, relative path matching, and +# negation (prefixed with !). Only one pattern per line. +.DS_Store +# Common VCS dirs +.git/ +.gitignore +.bzr/ +.bzrignore +.hg/ +.hgignore +.svn/ +# Common backup files +*.swp +*.bak +*.tmp +*.orig +*~ +# Various IDEs +.project +.idea/ +*.tmproj +.vscode/ \ No newline at end of file diff --git a/charts/fleet/fleet/0.3.500-rc08/charts/gitjob/Chart.yaml b/charts/fleet/fleet/0.3.500-rc08/charts/gitjob/Chart.yaml new file mode 100755 index 000000000..62e1e0255 --- /dev/null +++ b/charts/fleet/fleet/0.3.500-rc08/charts/gitjob/Chart.yaml @@ -0,0 +1,5 @@ +apiVersion: v2 +appVersion: 0.1.15 +description: Controller that run jobs based on git events +name: gitjob +version: 0.1.15 diff --git a/charts/fleet/fleet/0.3.500-rc08/charts/gitjob/templates/_helpers.tpl b/charts/fleet/fleet/0.3.500-rc08/charts/gitjob/templates/_helpers.tpl new file mode 100755 index 000000000..f652b5643 --- /dev/null +++ b/charts/fleet/fleet/0.3.500-rc08/charts/gitjob/templates/_helpers.tpl @@ -0,0 +1,7 @@ +{{- define "system_default_registry" -}} +{{- if .Values.global.cattle.systemDefaultRegistry -}} +{{- printf "%s/" .Values.global.cattle.systemDefaultRegistry -}} +{{- else -}} +{{- "" -}} +{{- end -}} +{{- end -}} \ No newline at end of file diff --git a/charts/fleet/fleet/0.3.500-rc08/charts/gitjob/templates/clusterrole.yaml b/charts/fleet/fleet/0.3.500-rc08/charts/gitjob/templates/clusterrole.yaml new file mode 100755 index 000000000..bcad90164 --- /dev/null +++ b/charts/fleet/fleet/0.3.500-rc08/charts/gitjob/templates/clusterrole.yaml @@ -0,0 +1,38 @@ +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRole +metadata: + name: gitjob +rules: + - apiGroups: + - "batch" + resources: + - 'jobs' + verbs: + - '*' + - apiGroups: + - "" + resources: + - 'pods' + verbs: + - 'list' + - 'get' + - 'watch' + - apiGroups: + - "" + resources: + - 'secrets' + verbs: + - '*' + - apiGroups: + - "" + resources: + - 'configmaps' + verbs: + - '*' + - apiGroups: + - "gitjob.cattle.io" + resources: + - "gitjobs" + - "gitjobs/status" + verbs: + - "*" \ No newline at end of file diff --git a/charts/fleet/fleet/0.3.500-rc08/charts/gitjob/templates/clusterrolebinding.yaml b/charts/fleet/fleet/0.3.500-rc08/charts/gitjob/templates/clusterrolebinding.yaml new file mode 100755 index 000000000..0bf07c4ef --- /dev/null +++ b/charts/fleet/fleet/0.3.500-rc08/charts/gitjob/templates/clusterrolebinding.yaml @@ -0,0 +1,12 @@ +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRoleBinding +metadata: + name: gitjob-binding +roleRef: + apiGroup: rbac.authorization.k8s.io + kind: ClusterRole + name: gitjob +subjects: + - kind: ServiceAccount + name: gitjob + namespace: {{ .Release.Namespace }} \ No newline at end of file diff --git a/charts/fleet/fleet/0.3.500-rc08/charts/gitjob/templates/deployment.yaml b/charts/fleet/fleet/0.3.500-rc08/charts/gitjob/templates/deployment.yaml new file mode 100755 index 000000000..a12a30d92 --- /dev/null +++ b/charts/fleet/fleet/0.3.500-rc08/charts/gitjob/templates/deployment.yaml @@ -0,0 +1,42 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: gitjob +spec: + selector: + matchLabels: + app: "gitjob" + template: + metadata: + labels: + app: "gitjob" + spec: + serviceAccountName: gitjob + containers: + - image: "{{ template "system_default_registry" . }}{{ .Values.gitjob.repository }}:{{ .Values.gitjob.tag }}" + name: gitjob + command: + - gitjob + - --tekton-image + - "{{ template "system_default_registry" . }}{{ .Values.tekton.repository }}:{{ .Values.tekton.tag }}" + env: + - name: NAMESPACE + valueFrom: + fieldRef: + fieldPath: metadata.namespace + {{- if .Values.proxy }} + - name: HTTP_PROXY + value: {{ .Values.proxy }} + - name: HTTPS_PROXY + value: {{ .Values.proxy }} + - name: NO_PROXY + value: {{ .Values.noProxy }} + {{- end }} + {{- with .Values.tolerations }} + tolerations: + {{- toYaml . | nindent 8 }} + {{- end }} + {{- with .Values.nodeSelector }} + nodeSelector: + {{- toYaml . | nindent 8 }} + {{- end }} diff --git a/charts/fleet/fleet/0.3.500-rc08/charts/gitjob/templates/service.yaml b/charts/fleet/fleet/0.3.500-rc08/charts/gitjob/templates/service.yaml new file mode 100755 index 000000000..bf57c1b55 --- /dev/null +++ b/charts/fleet/fleet/0.3.500-rc08/charts/gitjob/templates/service.yaml @@ -0,0 +1,12 @@ +apiVersion: v1 +kind: Service +metadata: + name: gitjob +spec: + ports: + - name: http-80 + port: 80 + protocol: TCP + targetPort: 8080 + selector: + app: "gitjob" \ No newline at end of file diff --git a/charts/fleet/fleet/0.3.500-rc08/charts/gitjob/templates/serviceaccount.yaml b/charts/fleet/fleet/0.3.500-rc08/charts/gitjob/templates/serviceaccount.yaml new file mode 100755 index 000000000..5f8aecb04 --- /dev/null +++ b/charts/fleet/fleet/0.3.500-rc08/charts/gitjob/templates/serviceaccount.yaml @@ -0,0 +1,4 @@ +apiVersion: v1 +kind: ServiceAccount +metadata: + name: gitjob diff --git a/charts/fleet/fleet/0.3.500-rc08/charts/gitjob/values.yaml b/charts/fleet/fleet/0.3.500-rc08/charts/gitjob/values.yaml new file mode 100755 index 000000000..90ca446a9 --- /dev/null +++ b/charts/fleet/fleet/0.3.500-rc08/charts/gitjob/values.yaml @@ -0,0 +1,26 @@ +gitjob: + repository: rancher/gitjob + tag: v0.1.15 + +tekton: + repository: rancher/tekton-utils + tag: v0.1.1 + +global: + cattle: + systemDefaultRegistry: "" + +# http[s] proxy server +# proxy: http://@:: + +# comma separated list of domains or ip addresses that will not use the proxy +noProxy: 127.0.0.0/8,10.0.0.0/8,172.16.0.0/12,192.168.0.0/16,.svc,.cluster.local + +nodeSelector: + kubernetes.io/os: linux + +tolerations: + - key: cattle.io/os + operator: "Equal" + value: "linux" + effect: NoSchedule diff --git a/charts/fleet/fleet/0.3.500-rc08/templates/_helpers.tpl b/charts/fleet/fleet/0.3.500-rc08/templates/_helpers.tpl new file mode 100755 index 000000000..f652b5643 --- /dev/null +++ b/charts/fleet/fleet/0.3.500-rc08/templates/_helpers.tpl @@ -0,0 +1,7 @@ +{{- define "system_default_registry" -}} +{{- if .Values.global.cattle.systemDefaultRegistry -}} +{{- printf "%s/" .Values.global.cattle.systemDefaultRegistry -}} +{{- else -}} +{{- "" -}} +{{- end -}} +{{- end -}} \ No newline at end of file diff --git a/charts/fleet/fleet/0.3.500-rc08/templates/configmap.yaml b/charts/fleet/fleet/0.3.500-rc08/templates/configmap.yaml new file mode 100755 index 000000000..c546c4b97 --- /dev/null +++ b/charts/fleet/fleet/0.3.500-rc08/templates/configmap.yaml @@ -0,0 +1,23 @@ +apiVersion: v1 +kind: ConfigMap +metadata: + name: fleet-controller +data: + config: | + { + "agentImage": "{{ template "system_default_registry" . }}{{.Values.agentImage.repository}}:{{.Values.agentImage.tag}}", + "agentImagePullPolicy": "{{ .Values.agentImage.imagePullPolicy }}", + "apiServerURL": "{{.Values.apiServerURL}}", + "apiServerCA": "{{b64enc .Values.apiServerCA}}", + "agentCheckinInterval": "{{.Values.agentCheckinInterval}}", + "ignoreClusterRegistrationLabels": {{.Values.ignoreClusterRegistrationLabels}}, + "bootstrap": { + "paths": "{{.Values.bootstrap.paths}}", + "repo": "{{.Values.bootstrap.repo}}", + "secret": "{{.Values.bootstrap.secret}}", + "branch": "{{.Values.bootstrap.branch}}", + "namespace": "{{.Values.bootstrap.namespace}}", + }, + "webhookReceiverURL": "{{.Values.webhookReceiverURL}}", + "githubURLPrefix": "{{.Values.githubURLPrefix}}" + } diff --git a/charts/fleet/fleet/0.3.500-rc08/templates/deployment.yaml b/charts/fleet/fleet/0.3.500-rc08/templates/deployment.yaml new file mode 100755 index 000000000..3319aa0f3 --- /dev/null +++ b/charts/fleet/fleet/0.3.500-rc08/templates/deployment.yaml @@ -0,0 +1,39 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: fleet-controller +spec: + selector: + matchLabels: + app: fleet-controller + template: + metadata: + labels: + app: fleet-controller + spec: + containers: + - env: + - name: NAMESPACE + valueFrom: + fieldRef: + fieldPath: metadata.namespace + {{- if .Values.proxy }} + - name: HTTP_PROXY + value: {{ .Values.proxy }} + - name: HTTPS_PROXY + value: {{ .Values.proxy }} + - name: NO_PROXY + value: {{ .Values.noProxy }} + {{- end }} + image: '{{ template "system_default_registry" . }}{{ .Values.image.repository }}:{{ .Values.image.tag }}' + name: fleet-controller + imagePullPolicy: "{{ .Values.image.imagePullPolicy }}" + serviceAccountName: fleet-controller + {{- with .Values.tolerations }} + tolerations: + {{- toYaml . | nindent 8 }} + {{- end }} + {{- with .Values.nodeSelector }} + nodeSelector: + {{- toYaml . | nindent 8 }} + {{- end }} diff --git a/charts/fleet/fleet/0.3.500-rc08/templates/rbac.yaml b/charts/fleet/fleet/0.3.500-rc08/templates/rbac.yaml new file mode 100755 index 000000000..59df51b1f --- /dev/null +++ b/charts/fleet/fleet/0.3.500-rc08/templates/rbac.yaml @@ -0,0 +1,106 @@ +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRole +metadata: + name: fleet-controller +rules: +- apiGroups: + - gitjob.cattle.io + resources: + - '*' + verbs: + - '*' +- apiGroups: + - fleet.cattle.io + resources: + - '*' + verbs: + - '*' +- apiGroups: + - "" + resources: + - namespaces + - serviceaccounts + verbs: + - '*' +- apiGroups: + - "" + resources: + - secrets + - configmaps + verbs: + - '*' +- apiGroups: + - rbac.authorization.k8s.io + resources: + - clusterroles + - clusterrolebindings + - roles + - rolebindings + verbs: + - '*' + +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRoleBinding +metadata: + name: fleet-controller +roleRef: + apiGroup: rbac.authorization.k8s.io + kind: ClusterRole + name: fleet-controller +subjects: +- kind: ServiceAccount + name: fleet-controller + namespace: {{.Release.Namespace}} + +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: Role +metadata: + name: fleet-controller +rules: +- apiGroups: + - "" + resources: + - configmaps + verbs: + - '*' + +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: RoleBinding +metadata: + name: fleet-controller +roleRef: + apiGroup: rbac.authorization.k8s.io + kind: Role + name: fleet-controller +subjects: +- kind: ServiceAccount + name: fleet-controller + +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRole +metadata: + name: fleet-controller-bootstrap +rules: +- apiGroups: + - '*' + resources: + - '*' + verbs: + - '*' +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRoleBinding +metadata: + name: fleet-controller-bootstrap +roleRef: + apiGroup: rbac.authorization.k8s.io + kind: ClusterRole + name: fleet-controller-bootstrap +subjects: +- kind: ServiceAccount + name: fleet-controller-bootstrap + namespace: {{.Release.Namespace}} diff --git a/charts/fleet/fleet/0.3.500-rc08/templates/serviceaccount.yaml b/charts/fleet/fleet/0.3.500-rc08/templates/serviceaccount.yaml new file mode 100755 index 000000000..bd99d9958 --- /dev/null +++ b/charts/fleet/fleet/0.3.500-rc08/templates/serviceaccount.yaml @@ -0,0 +1,10 @@ +apiVersion: v1 +kind: ServiceAccount +metadata: + name: fleet-controller + +--- +apiVersion: v1 +kind: ServiceAccount +metadata: + name: fleet-controller-bootstrap diff --git a/charts/fleet/fleet/0.3.500-rc08/values.yaml b/charts/fleet/fleet/0.3.500-rc08/values.yaml new file mode 100755 index 000000000..7a0f7ce01 --- /dev/null +++ b/charts/fleet/fleet/0.3.500-rc08/values.yaml @@ -0,0 +1,53 @@ +image: + repository: rancher/fleet + tag: v0.3.5-rc8 + imagePullPolicy: IfNotPresent + +agentImage: + repository: rancher/fleet-agent + tag: v0.3.5-rc8 + imagePullPolicy: IfNotPresent + +# For cluster registration the public URL of the Kubernetes API server must be set here +# Example: https://example.com:6443 +apiServerURL: "" + +# For cluster registration the pem encoded value of the CA of the Kubernetes API server must be set here +# If left empty it is assumed this Kubernetes API TLS is signed by a well known CA. +apiServerCA: "" + +# A duration string for how often agents should report a heartbeat +agentCheckinInterval: "15m" + +# Whether you want to allow cluster upon registration to specify their labels. +ignoreClusterRegistrationLabels: false + +# http[s] proxy server +# proxy: http://@:: + +# comma separated list of domains or ip addresses that will not use the proxy +noProxy: 127.0.0.0/8,10.0.0.0/8,172.16.0.0/12,192.168.0.0/16,.svc,.cluster.local + +bootstrap: + # The namespace that will be autocreated and the local cluster will be registered in + namespace: fleet-local + # A repo to add at install time that will deploy to the local cluster. This allows + # one to fully bootstrap fleet, it's configuration and all it's downstream clusters + # in one shot. + repo: "" + secret: "" + branch: master + paths: "" + +global: + cattle: + systemDefaultRegistry: "" + +nodeSelector: + kubernetes.io/os: linux + +tolerations: + - key: cattle.io/os + operator: "Equal" + value: "linux" + effect: NoSchedule \ No newline at end of file diff --git a/index.yaml b/index.yaml old mode 100644 new mode 100755 index 882677bd9..7b88941e3 --- a/index.yaml +++ b/index.yaml @@ -20,6 +20,158 @@ entries: urls: - released/assets/fleet/fleet-0.3.500.tgz version: 0.3.500 + - annotations: + catalog.cattle.io/auto-install: fleet-crd=match + catalog.cattle.io/certified: rancher + catalog.cattle.io/experimental: "true" + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: fleet-system + catalog.cattle.io/os: linux + catalog.cattle.io/provides-gvr: clusters.fleet.cattle.io/v1alpha1 + catalog.cattle.io/release-name: fleet + apiVersion: v2 + appVersion: 0.3.5 + created: "2021-04-28T01:10:40.094098974Z" + description: Fleet Manager - GitOps at Scale + digest: 6688a524c74915ede2f4d1ae331cadec6b515853672c24be9c9332cf582b5636 + icon: https://charts.rancher.io/assets/logos/fleet.svg + name: fleet + urls: + - assets/fleet/fleet-0.3.500-rc08.tgz + version: 0.3.500-rc08 + - annotations: + catalog.cattle.io/auto-install: fleet-crd=match + catalog.cattle.io/certified: rancher + catalog.cattle.io/experimental: "true" + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: fleet-system + catalog.cattle.io/os: linux + catalog.cattle.io/provides-gvr: clusters.fleet.cattle.io/v1alpha1 + catalog.cattle.io/release-name: fleet + apiVersion: v2 + appVersion: 0.3.5 + created: "2021-04-28T01:10:40.09298899Z" + description: Fleet Manager - GitOps at Scale + digest: 439cde1bc789c5def58f1d786eb76c38e6cdb8bd51a6feca95fd1b0542f7e59c + icon: https://charts.rancher.io/assets/logos/fleet.svg + name: fleet + urls: + - assets/fleet/fleet-0.3.500-rc07.tgz + version: 0.3.500-rc07 + - annotations: + catalog.cattle.io/auto-install: fleet-crd=match + catalog.cattle.io/certified: rancher + catalog.cattle.io/experimental: "true" + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: fleet-system + catalog.cattle.io/os: linux + catalog.cattle.io/provides-gvr: clusters.fleet.cattle.io/v1alpha1 + catalog.cattle.io/release-name: fleet + apiVersion: v2 + appVersion: 0.3.5 + created: "2021-04-28T01:10:40.092187501Z" + description: Fleet Manager - GitOps at Scale + digest: aa0a53184dd0236e76447579d33713c724ec26c070ca8637fd0b691955771486 + icon: https://charts.rancher.io/assets/logos/fleet.svg + name: fleet + urls: + - assets/fleet/fleet-0.3.500-rc06.tgz + version: 0.3.500-rc06 + - annotations: + catalog.cattle.io/auto-install: fleet-crd=match + catalog.cattle.io/certified: rancher + catalog.cattle.io/experimental: "true" + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: fleet-system + catalog.cattle.io/os: linux + catalog.cattle.io/provides-gvr: clusters.fleet.cattle.io/v1alpha1 + catalog.cattle.io/release-name: fleet + apiVersion: v2 + appVersion: 0.3.5 + created: "2021-04-28T01:10:40.090720422Z" + description: Fleet Manager - GitOps at Scale + digest: 0ef37b499661d5c3998c571bf3e25972b0bbd27b8249c384af313bef36ba6d61 + icon: https://charts.rancher.io/assets/logos/fleet.svg + name: fleet + urls: + - assets/fleet/fleet-0.3.500-rc05.tgz + version: 0.3.500-rc05 + - annotations: + catalog.cattle.io/auto-install: fleet-crd=match + catalog.cattle.io/certified: rancher + catalog.cattle.io/experimental: "true" + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: fleet-system + catalog.cattle.io/os: linux + catalog.cattle.io/provides-gvr: clusters.fleet.cattle.io/v1alpha1 + catalog.cattle.io/release-name: fleet + apiVersion: v2 + appVersion: 0.3.5 + created: "2021-04-28T01:10:40.089962232Z" + description: Fleet Manager - GitOps at Scale + digest: 56fdbfb76993a43c7e7efbc6e480a271b6bf88596163a629a785d6cb8ad37b20 + icon: https://charts.rancher.io/assets/logos/fleet.svg + name: fleet + urls: + - assets/fleet/fleet-0.3.500-rc04.tgz + version: 0.3.500-rc04 + - annotations: + catalog.cattle.io/auto-install: fleet-crd=match + catalog.cattle.io/certified: rancher + catalog.cattle.io/experimental: "true" + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: fleet-system + catalog.cattle.io/os: linux + catalog.cattle.io/provides-gvr: clusters.fleet.cattle.io/v1alpha1 + catalog.cattle.io/release-name: fleet + apiVersion: v2 + appVersion: 0.3.5 + created: "2021-04-28T01:10:40.089268742Z" + description: Fleet Manager - GitOps at Scale + digest: a583464aed3ed3c6bd5a6d565decbd6e052a2a1176ae54208dc37660bf288010 + icon: https://charts.rancher.io/assets/logos/fleet.svg + name: fleet + urls: + - assets/fleet/fleet-0.3.500-rc03.tgz + version: 0.3.500-rc03 + - annotations: + catalog.cattle.io/auto-install: fleet-crd=match + catalog.cattle.io/certified: rancher + catalog.cattle.io/experimental: "true" + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: fleet-system + catalog.cattle.io/os: linux + catalog.cattle.io/provides-gvr: clusters.fleet.cattle.io/v1alpha1 + catalog.cattle.io/release-name: fleet + apiVersion: v2 + appVersion: 0.3.5 + created: "2021-04-28T01:10:40.088568052Z" + description: Fleet Manager - GitOps at Scale + digest: 7d0614eaeaf5f1029a245ad6881f97719bf3caa44075901d9290810bb17a207c + icon: https://charts.rancher.io/assets/logos/fleet.svg + name: fleet + urls: + - assets/fleet/fleet-0.3.500-rc02.tgz + version: 0.3.500-rc02 + - annotations: + catalog.cattle.io/auto-install: fleet-crd=match + catalog.cattle.io/certified: rancher + catalog.cattle.io/experimental: "true" + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: fleet-system + catalog.cattle.io/os: linux + catalog.cattle.io/provides-gvr: clusters.fleet.cattle.io/v1alpha1 + catalog.cattle.io/release-name: fleet + apiVersion: v2 + appVersion: 0.3.5 + created: "2021-04-28T01:10:40.087954761Z" + description: Fleet Manager - GitOps at Scale + digest: 443c4a6b34b021406aed20df13848926328afa4790a817c9ada07dc47a8b8e71 + icon: https://charts.rancher.io/assets/logos/fleet.svg + name: fleet + urls: + - assets/fleet/fleet-0.3.500-rc01.tgz + version: 0.3.500-rc01 - annotations: catalog.cattle.io/auto-install: fleet-crd=match catalog.cattle.io/certified: rancher @@ -39,6 +191,25 @@ entries: urls: - released/assets/fleet/fleet-0.3.400.tgz version: 0.3.400 + - annotations: + catalog.cattle.io/auto-install: fleet-crd=match + catalog.cattle.io/certified: rancher + catalog.cattle.io/experimental: "true" + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: fleet-system + catalog.cattle.io/os: linux + catalog.cattle.io/provides-gvr: clusters.fleet.cattle.io/v1alpha1 + catalog.cattle.io/release-name: fleet + apiVersion: v2 + appVersion: 0.3.4 + created: "2021-04-28T01:10:40.087370169Z" + description: Fleet Manager - GitOps at Scale + digest: e1d3bd31defa667da62185dae7c37f943d6d4eceece802e04559ae7beab34f76 + icon: https://charts.rancher.io/assets/logos/fleet.svg + name: fleet + urls: + - assets/fleet/fleet-0.3.400-rc08.tgz + version: 0.3.400-rc08 - annotations: catalog.cattle.io/auto-install: fleet-crd=match catalog.cattle.io/certified: rancher @@ -132,6 +303,134 @@ entries: urls: - released/assets/fleet-agent/fleet-agent-0.3.500.tgz version: 0.3.500 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: fleet-system + catalog.cattle.io/os: linux + catalog.cattle.io/release-name: fleet-agent + apiVersion: v2 + appVersion: 0.3.5 + created: "2021-04-28T01:10:40.098033319Z" + description: Fleet Manager Agent - GitOps at Scale + digest: 14a4f446c094e95bd8da8dabdd3f1a479ee093d323c143c05671d5f728828d62 + icon: https://charts.rancher.io/assets/logos/fleet.svg + name: fleet-agent + urls: + - assets/fleet-agent/fleet-agent-0.3.500-rc08.tgz + version: 0.3.500-rc08 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: fleet-system + catalog.cattle.io/os: linux + catalog.cattle.io/release-name: fleet-agent + apiVersion: v2 + appVersion: 0.3.5 + created: "2021-04-28T01:10:40.097640925Z" + description: Fleet Manager Agent - GitOps at Scale + digest: 9ce60b215b4136e64f2b60043d6ee3633db93c74682b14e2a38a56e420f2239a + icon: https://charts.rancher.io/assets/logos/fleet.svg + name: fleet-agent + urls: + - assets/fleet-agent/fleet-agent-0.3.500-rc07.tgz + version: 0.3.500-rc07 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: fleet-system + catalog.cattle.io/os: linux + catalog.cattle.io/release-name: fleet-agent + apiVersion: v2 + appVersion: 0.3.5 + created: "2021-04-28T01:10:40.097221131Z" + description: Fleet Manager Agent - GitOps at Scale + digest: a60695a236c31c0be8afbdf9441aeab34506376063ed4e3fbf09f9284e659553 + icon: https://charts.rancher.io/assets/logos/fleet.svg + name: fleet-agent + urls: + - assets/fleet-agent/fleet-agent-0.3.500-rc06.tgz + version: 0.3.500-rc06 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: fleet-system + catalog.cattle.io/os: linux + catalog.cattle.io/release-name: fleet-agent + apiVersion: v2 + appVersion: 0.3.5 + created: "2021-04-28T01:10:40.096716738Z" + description: Fleet Manager Agent - GitOps at Scale + digest: 79834f24e406e61945647546053a87191c05b677ad989cd99e6780bc1e066a93 + icon: https://charts.rancher.io/assets/logos/fleet.svg + name: fleet-agent + urls: + - assets/fleet-agent/fleet-agent-0.3.500-rc05.tgz + version: 0.3.500-rc05 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: fleet-system + catalog.cattle.io/os: linux + catalog.cattle.io/release-name: fleet-agent + apiVersion: v2 + appVersion: 0.3.5 + created: "2021-04-28T01:10:40.096215845Z" + description: Fleet Manager Agent - GitOps at Scale + digest: b1b7573def4cf7549c16d4b35cd0224f9c318e2c4628b45ee229cbf1dcab2f8c + icon: https://charts.rancher.io/assets/logos/fleet.svg + name: fleet-agent + urls: + - assets/fleet-agent/fleet-agent-0.3.500-rc04.tgz + version: 0.3.500-rc04 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: fleet-system + catalog.cattle.io/os: linux + catalog.cattle.io/release-name: fleet-agent + apiVersion: v2 + appVersion: 0.3.5 + created: "2021-04-28T01:10:40.095771351Z" + description: Fleet Manager Agent - GitOps at Scale + digest: f04117333c5f3ca7b41fa36a089fc2ee6ffba62a41c828677454dab9ca2495f3 + icon: https://charts.rancher.io/assets/logos/fleet.svg + name: fleet-agent + urls: + - assets/fleet-agent/fleet-agent-0.3.500-rc03.tgz + version: 0.3.500-rc03 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: fleet-system + catalog.cattle.io/os: linux + catalog.cattle.io/release-name: fleet-agent + apiVersion: v2 + appVersion: 0.3.5 + created: "2021-04-28T01:10:40.095379656Z" + description: Fleet Manager Agent - GitOps at Scale + digest: 1432bc0719b848dc41794610f905b82a53e485fcc74c7e7778088da60c269dfb + icon: https://charts.rancher.io/assets/logos/fleet.svg + name: fleet-agent + urls: + - assets/fleet-agent/fleet-agent-0.3.500-rc02.tgz + version: 0.3.500-rc02 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: fleet-system + catalog.cattle.io/os: linux + catalog.cattle.io/release-name: fleet-agent + apiVersion: v2 + appVersion: 0.3.5 + created: "2021-04-28T01:10:40.094978162Z" + description: Fleet Manager Agent - GitOps at Scale + digest: 9abb1ab308acf5a714846b4fbf559d71f0914959593d89e58a82eb134a185a4e + icon: https://charts.rancher.io/assets/logos/fleet.svg + name: fleet-agent + urls: + - assets/fleet-agent/fleet-agent-0.3.500-rc01.tgz + version: 0.3.500-rc01 - annotations: catalog.cattle.io/certified: rancher catalog.cattle.io/hidden: "true" @@ -148,6 +447,22 @@ entries: urls: - released/assets/fleet-agent/fleet-agent-0.3.400.tgz version: 0.3.400 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: fleet-system + catalog.cattle.io/os: linux + catalog.cattle.io/release-name: fleet-agent + apiVersion: v2 + appVersion: 0.3.4 + created: "2021-04-28T01:10:40.094541568Z" + description: Fleet Manager Agent - GitOps at Scale + digest: 141ba6abe73be3db6d6c1d3194a0261380151a9141b7078fa1ca7f3d4d500fa3 + icon: https://charts.rancher.io/assets/logos/fleet.svg + name: fleet-agent + urls: + - assets/fleet-agent/fleet-agent-0.3.400-rc08.tgz + version: 0.3.400-rc08 - annotations: catalog.cattle.io/certified: rancher catalog.cattle.io/hidden: "true" @@ -229,6 +544,134 @@ entries: urls: - released/assets/fleet-crd/fleet-crd-0.3.500.tgz version: 0.3.500 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: fleet-system + catalog.cattle.io/os: linux + catalog.cattle.io/release-name: fleet-crd + apiVersion: v2 + appVersion: 0.3.5 + created: "2021-04-28T01:10:40.104945522Z" + description: Fleet Manager CustomResourceDefinitions + digest: 058f6de476650cf5af0f34900a3ceb7d843d06dd54eb7911faf9046fb27f79b4 + icon: https://charts.rancher.io/assets/logos/fleet.svg + name: fleet-crd + urls: + - assets/fleet-crd/fleet-crd-0.3.500-rc08.tgz + version: 0.3.500-rc08 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: fleet-system + catalog.cattle.io/os: linux + catalog.cattle.io/release-name: fleet-crd + apiVersion: v2 + appVersion: 0.3.5 + created: "2021-04-28T01:10:40.104294331Z" + description: Fleet Manager CustomResourceDefinitions + digest: d6d4869e28f09050884e5b517e2961826ba96244b34669fcc23a71d26953ed4d + icon: https://charts.rancher.io/assets/logos/fleet.svg + name: fleet-crd + urls: + - assets/fleet-crd/fleet-crd-0.3.500-rc07.tgz + version: 0.3.500-rc07 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: fleet-system + catalog.cattle.io/os: linux + catalog.cattle.io/release-name: fleet-crd + apiVersion: v2 + appVersion: 0.3.5 + created: "2021-04-28T01:10:40.10365994Z" + description: Fleet Manager CustomResourceDefinitions + digest: 699c441014d200a646683e3a7955f7751b7176cef0b56d088241c37cd42bf359 + icon: https://charts.rancher.io/assets/logos/fleet.svg + name: fleet-crd + urls: + - assets/fleet-crd/fleet-crd-0.3.500-rc06.tgz + version: 0.3.500-rc06 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: fleet-system + catalog.cattle.io/os: linux + catalog.cattle.io/release-name: fleet-crd + apiVersion: v2 + appVersion: 0.3.5 + created: "2021-04-28T01:10:40.103057149Z" + description: Fleet Manager CustomResourceDefinitions + digest: 1ebf500a7032134e13e35ed17e88a1025efce673cd8b4f433b2459b0f38f2807 + icon: https://charts.rancher.io/assets/logos/fleet.svg + name: fleet-crd + urls: + - assets/fleet-crd/fleet-crd-0.3.500-rc05.tgz + version: 0.3.500-rc05 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: fleet-system + catalog.cattle.io/os: linux + catalog.cattle.io/release-name: fleet-crd + apiVersion: v2 + appVersion: 0.3.5 + created: "2021-04-28T01:10:40.101873065Z" + description: Fleet Manager CustomResourceDefinitions + digest: 97b10b9c6943cdc972a5a69fd96db4a75d4a0543f4588dd733ad4c9824dc5698 + icon: https://charts.rancher.io/assets/logos/fleet.svg + name: fleet-crd + urls: + - assets/fleet-crd/fleet-crd-0.3.500-rc04.tgz + version: 0.3.500-rc04 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: fleet-system + catalog.cattle.io/os: linux + catalog.cattle.io/release-name: fleet-crd + apiVersion: v2 + appVersion: 0.3.5 + created: "2021-04-28T01:10:40.100603383Z" + description: Fleet Manager CustomResourceDefinitions + digest: 92663c8f47355f313050b9043dd528905df6716c5e90bdaade7abe7fe1c15a99 + icon: https://charts.rancher.io/assets/logos/fleet.svg + name: fleet-crd + urls: + - assets/fleet-crd/fleet-crd-0.3.500-rc03.tgz + version: 0.3.500-rc03 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: fleet-system + catalog.cattle.io/os: linux + catalog.cattle.io/release-name: fleet-crd + apiVersion: v2 + appVersion: 0.3.5 + created: "2021-04-28T01:10:40.099695396Z" + description: Fleet Manager CustomResourceDefinitions + digest: ee5ae9f179dac626c18ca795b47a9b67ba4317f284c60c5e188d23f02cf5b2a6 + icon: https://charts.rancher.io/assets/logos/fleet.svg + name: fleet-crd + urls: + - assets/fleet-crd/fleet-crd-0.3.500-rc02.tgz + version: 0.3.500-rc02 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: fleet-system + catalog.cattle.io/os: linux + catalog.cattle.io/release-name: fleet-crd + apiVersion: v2 + appVersion: 0.3.5 + created: "2021-04-28T01:10:40.099128104Z" + description: Fleet Manager CustomResourceDefinitions + digest: 5a9971ba36b1565f22b4bababd5a5f862d2ca016a626283dfc79b30b8952f00c + icon: https://charts.rancher.io/assets/logos/fleet.svg + name: fleet-crd + urls: + - assets/fleet-crd/fleet-crd-0.3.500-rc01.tgz + version: 0.3.500-rc01 - annotations: catalog.cattle.io/certified: rancher catalog.cattle.io/hidden: "true" @@ -245,6 +688,22 @@ entries: urls: - released/assets/fleet-crd/fleet-crd-0.3.400.tgz version: 0.3.400 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: fleet-system + catalog.cattle.io/os: linux + catalog.cattle.io/release-name: fleet-crd + apiVersion: v2 + appVersion: 0.3.4 + created: "2021-04-28T01:10:40.098549912Z" + description: Fleet Manager CustomResourceDefinitions + digest: 443ea644731a2b669ac3a601c9fd9d61a225e530ddd1f72dee0f3001c710f2df + icon: https://charts.rancher.io/assets/logos/fleet.svg + name: fleet-crd + urls: + - assets/fleet-crd/fleet-crd-0.3.400-rc08.tgz + version: 0.3.400-rc08 - annotations: catalog.cattle.io/certified: rancher catalog.cattle.io/hidden: "true" @@ -349,6 +808,47 @@ entries: urls: - released/assets/longhorn/longhorn-1.1.001.tgz version: 1.1.001 + - annotations: + catalog.cattle.io/auto-install: longhorn-crd=match + catalog.cattle.io/certified: rancher + catalog.cattle.io/display-name: Longhorn + catalog.cattle.io/namespace: longhorn-system + catalog.cattle.io/os: linux + catalog.cattle.io/provides-gvr: longhorn.io/v1beta1 + catalog.cattle.io/release-name: longhorn + catalog.cattle.io/ui-component: longhorn + apiVersion: v1 + appVersion: v1.1.0 + created: "2021-04-28T01:10:40.106248004Z" + description: Longhorn is a distributed block storage system for Kubernetes. + digest: 09a586f9ddccef1840e4c3cb548d7d412dd5cec650e3a86483086164d50da9d8 + home: https://github.com/longhorn/longhorn + icon: https://raw.githubusercontent.com/cncf/artwork/master/projects/longhorn/icon/color/longhorn-icon-color.svg?sanitize=true + keywords: + - longhorn + - storage + - distributed + - block + - device + - iscsi + kubeVersion: '>=v1.16.0-r0' + maintainers: + - email: maintainers@longhorn.io + name: Longhorn maintainers + - email: sheng@yasker.org + name: Sheng Yang + name: longhorn + sources: + - https://github.com/longhorn/longhorn + - https://github.com/longhorn/longhorn-engine + - https://github.com/longhorn/longhorn-instance-manager + - https://github.com/longhorn/longhorn-share-manager + - https://github.com/longhorn/longhorn-manager + - https://github.com/longhorn/longhorn-ui + - https://github.com/longhorn/longhorn-tests + urls: + - assets/longhorn/longhorn-1.1.001-rc01.tgz + version: 1.1.001-rc01 - annotations: catalog.cattle.io/auto-install: longhorn-crd=match catalog.cattle.io/certified: rancher @@ -484,6 +984,20 @@ entries: urls: - released/assets/longhorn/longhorn-crd-1.1.001.tgz version: 1.1.001 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: longhorn-system + catalog.cattle.io/release-name: longhorn-crd + apiVersion: v1 + created: "2021-04-28T01:10:40.106438001Z" + description: Installs the CRDs for longhorn. + digest: 3510fd3cea8ef949fdcef70b5c240f3b4d5f6854a053c70260b9995e441af07a + name: longhorn-crd + type: application + urls: + - assets/longhorn/longhorn-crd-1.1.001-rc01.tgz + version: 1.1.001-rc01 - annotations: catalog.cattle.io/certified: rancher catalog.cattle.io/hidden: "true" @@ -542,7 +1056,8 @@ entries: - condition: sachet.enabled name: sachet repository: file://./charts/sachet - description: The manager for third-party webhook receivers used in Prometheus Alertmanager + description: The manager for third-party webhook receivers used in Prometheus + Alertmanager digest: ee0151202379546abf9437f3efa3e789d124945dbd6b6334ddb57c8d8ada9ad5 keywords: - monitoring @@ -552,6 +1067,109 @@ entries: urls: - released/assets/rancher-alerting-drivers/rancher-alerting-drivers-1.0.100.tgz version: 1.0.100 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/display-name: Alerting Drivers + catalog.cattle.io/os: linux + catalog.cattle.io/release-name: rancher-alerting-drivers + apiVersion: v2 + appVersion: 1.16.0 + created: "2021-04-28T01:10:40.110616742Z" + dependencies: + - condition: prom2teams.enabled + name: prom2teams + repository: file://./charts/prom2teams + - condition: sachet.enabled + name: sachet + repository: file://./charts/sachet + description: The manager for third-party webhook receivers used in Prometheus + Alertmanager + digest: cba5338ae63c367b2f4e463f09d83089b00a5bd08edc4b7f6fcb6a853c317aee + keywords: + - monitoring + - alertmanger + - webhook + name: rancher-alerting-drivers + urls: + - assets/rancher-alerting-drivers/rancher-alerting-drivers-1.0.100-rc04.tgz + version: 1.0.100-rc04 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/display-name: Alerting Drivers + catalog.cattle.io/os: linux + catalog.cattle.io/release-name: rancher-alerting-drivers + apiVersion: v2 + appVersion: 1.16.0 + created: "2021-04-28T01:10:40.109641956Z" + dependencies: + - condition: prom2teams.enabled + name: prom2teams + repository: file://./charts/prom2teams + - condition: sachet.enabled + name: sachet + repository: file://./charts/sachet + description: The manager for third-party webhook receivers used in Prometheus + Alertmanager + digest: 4e6ae29c5ace7253df6d3ab03f365586dee5886983840252760dd1f4f745c36b + keywords: + - monitoring + - alertmanger + - webhook + name: rancher-alerting-drivers + urls: + - assets/rancher-alerting-drivers/rancher-alerting-drivers-1.0.100-rc03.tgz + version: 1.0.100-rc03 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/display-name: Alerting Drivers + catalog.cattle.io/os: linux + catalog.cattle.io/release-name: rancher-alerting-drivers + apiVersion: v2 + appVersion: 1.16.0 + created: "2021-04-28T01:10:40.10865747Z" + dependencies: + - condition: prom2teams.enabled + name: prom2teams + repository: file://./charts/prom2teams + - condition: sachet.enabled + name: sachet + repository: file://./charts/sachet + description: The manager for third-party webhook receivers used in Prometheus + Alertmanager + digest: c9433565bc0a26dda6db36eea1ea2d6e854577c87e8c7a10c3c68c4fbd9da9d0 + keywords: + - monitoring + - alertmanger + - webhook + name: rancher-alerting-drivers + urls: + - assets/rancher-alerting-drivers/rancher-alerting-drivers-1.0.100-rc02.tgz + version: 1.0.100-rc02 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/display-name: Alerting Drivers + catalog.cattle.io/os: linux + catalog.cattle.io/release-name: rancher-alerting-drivers + apiVersion: v2 + appVersion: 1.16.0 + created: "2021-04-28T01:10:40.107651784Z" + dependencies: + - condition: prom2teams.enabled + name: prom2teams + repository: file://./charts/prom2teams + - condition: sachet.enabled + name: sachet + repository: file://./charts/sachet + description: The manager for third-party webhook receivers used in the Alertmanger + digest: 17792f352254ecec55f48a1e77ea2f1f73d534b7a56541286c52fb41b7f026b5 + keywords: + - monitoring + - alertmanger + - webhook + name: rancher-alerting-drivers + urls: + - assets/rancher-alerting-drivers/rancher-alerting-drivers-1.0.100-rc01.tgz + version: 1.0.100-rc01 rancher-backup: - annotations: catalog.cattle.io/auto-install: rancher-backup-crd=match @@ -566,7 +1184,8 @@ entries: apiVersion: v2 appVersion: 1.0.4 created: "2021-04-27T19:45:02.471135165Z" - description: Provides ability to back up and restore the Rancher application running on any Kubernetes cluster + description: Provides ability to back up and restore the Rancher application running + on any Kubernetes cluster digest: b26bebd10d5603c0b1101c264fd7b1ad16d8ee482adfc26c1abe2493e1893e2c icon: https://charts.rancher.io/assets/logos/backup-restore.svg keywords: @@ -576,6 +1195,78 @@ entries: urls: - released/assets/rancher-backup/rancher-backup-1.0.400.tgz version: 1.0.400 + - annotations: + catalog.cattle.io/auto-install: rancher-backup-crd=match + catalog.cattle.io/certified: rancher + catalog.cattle.io/display-name: Rancher Backups + catalog.cattle.io/namespace: cattle-resources-system + catalog.cattle.io/os: linux + catalog.cattle.io/provides-gvr: resources.cattle.io.resourceset/v1 + catalog.cattle.io/release-name: rancher-backup + catalog.cattle.io/scope: management + catalog.cattle.io/ui-component: rancher-backup + apiVersion: v2 + appVersion: 1.0.4 + created: "2021-04-28T01:10:40.113183606Z" + description: Provides ability to back up and restore the Rancher application running + on any Kubernetes cluster + digest: c20467344baca03b46bd3e8e210d83c8aac67a14a9db9652238d983ba43cc1b2 + icon: https://charts.rancher.io/assets/logos/backup-restore.svg + keywords: + - applications + - infrastructure + name: rancher-backup + urls: + - assets/rancher-backup/rancher-backup-1.0.400-rc04.tgz + version: 1.0.400-rc04 + - annotations: + catalog.cattle.io/auto-install: rancher-backup-crd=match + catalog.cattle.io/certified: rancher + catalog.cattle.io/display-name: Rancher Backups + catalog.cattle.io/namespace: cattle-resources-system + catalog.cattle.io/os: linux + catalog.cattle.io/provides-gvr: resources.cattle.io.resourceset/v1 + catalog.cattle.io/release-name: rancher-backup + catalog.cattle.io/scope: management + catalog.cattle.io/ui-component: rancher-backup + apiVersion: v2 + appVersion: 1.0.4 + created: "2021-04-28T01:10:40.11220902Z" + description: Provides ability to back up and restore the Rancher application running + on any Kubernetes cluster + digest: af2c73d66f7808f710d47df3f0e0053a2e500a1c7fe02fd7805bb2b1457d47e6 + icon: https://charts.rancher.io/assets/logos/backup-restore.svg + keywords: + - applications + - infrastructure + name: rancher-backup + urls: + - assets/rancher-backup/rancher-backup-1.0.400-rc03.tgz + version: 1.0.400-rc03 + - annotations: + catalog.cattle.io/auto-install: rancher-backup-crd=match + catalog.cattle.io/certified: rancher + catalog.cattle.io/display-name: Rancher Backups + catalog.cattle.io/namespace: cattle-resources-system + catalog.cattle.io/os: linux + catalog.cattle.io/provides-gvr: resources.cattle.io.resourceset/v1 + catalog.cattle.io/release-name: rancher-backup + catalog.cattle.io/scope: management + catalog.cattle.io/ui-component: rancher-backup + apiVersion: v2 + appVersion: 1.0.4 + created: "2021-04-28T01:10:40.111676128Z" + description: Provides ability to back up and restore the Rancher application running + on any Kubernetes cluster + digest: 5fd539770144cff99063b15c0e7b07e7fa0d61b906f7f741976d1f9aff56bdfd + icon: https://charts.rancher.io/assets/logos/backup-restore.svg + keywords: + - applications + - infrastructure + name: rancher-backup + urls: + - assets/rancher-backup/rancher-backup-1.0.400-rc02.tgz + version: 1.0.400-rc02 - annotations: catalog.cattle.io/auto-install: rancher-backup-crd=match catalog.cattle.io/certified: rancher @@ -589,7 +1280,8 @@ entries: apiVersion: v1 appVersion: v1.0.3 created: "2021-04-27T19:45:02.470446457Z" - description: Provides ability to back up and restore the Rancher application running on any Kubernetes cluster + description: Provides ability to back up and restore the Rancher application running + on any Kubernetes cluster digest: 21e586d307c78cc6a1321adaa89bef78719f0beca7f181c719cbca27691e6f5a icon: https://charts.rancher.io/assets/logos/backup-restore.svg keywords: @@ -599,6 +1291,30 @@ entries: urls: - released/assets/rancher-backup/rancher-backup-1.0.301.tgz version: 1.0.301 + - annotations: + catalog.cattle.io/auto-install: rancher-backup-crd=match + catalog.cattle.io/certified: rancher + catalog.cattle.io/display-name: Rancher Backups + catalog.cattle.io/namespace: cattle-resources-system + catalog.cattle.io/os: linux + catalog.cattle.io/provides-gvr: resources.cattle.io.resourceset/v1 + catalog.cattle.io/release-name: rancher-backup + catalog.cattle.io/scope: management + catalog.cattle.io/ui-component: rancher-backup + apiVersion: v1 + appVersion: v1.0.3 + created: "2021-04-28T01:10:40.111095436Z" + description: Provides ability to back up and restore the Rancher application running + on any Kubernetes cluster + digest: e53990b35597a7464b000dd2418ba2cb93f1a8d703e213271094a08c1a0bd121 + icon: https://charts.rancher.io/assets/logos/backup-restore.svg + keywords: + - applications + - infrastructure + name: rancher-backup + urls: + - assets/rancher-backup/rancher-backup-1.0.301-rc01.tgz + version: 1.0.301-rc01 - annotations: catalog.cattle.io/auto-install: rancher-backup-crd=match catalog.cattle.io/certified: rancher @@ -612,7 +1328,8 @@ entries: apiVersion: v1 appVersion: v1.0.3 created: "2021-04-27T19:45:02.46980275Z" - description: Provides ability to back up and restore the Rancher application running on any Kubernetes cluster + description: Provides ability to back up and restore the Rancher application running + on any Kubernetes cluster digest: 733d4515a014e6c6d99f73db30d3143f7cef04a870b19a3b2f5eef5b09dbfc55 icon: https://charts.rancher.io/assets/logos/backup-restore.svg keywords: @@ -635,7 +1352,8 @@ entries: apiVersion: v1 appVersion: v1.0.2 created: "2021-04-27T19:45:02.469181243Z" - description: Provides ability to back up and restore the Rancher application running on any Kubernetes cluster + description: Provides ability to back up and restore the Rancher application running + on any Kubernetes cluster digest: bd39f041d51be323dd59dbbb0bae5c21b7ebbdca5f777972080254eb996595b4 icon: https://charts.rancher.io/assets/logos/backup-restore.svg keywords: @@ -657,7 +1375,8 @@ entries: apiVersion: v1 appVersion: v1.0.2 created: "2021-04-27T19:45:02.468533335Z" - description: Provides ability to back up and restore the Rancher application running on any Kubernetes cluster + description: Provides ability to back up and restore the Rancher application running + on any Kubernetes cluster digest: a3a4fcd83c7332bfafe1ee03c17dbdb43765364e97dc19f297884334486196c7 icon: https://charts.rancher.io/assets/logos/backup-restore.svg keywords: @@ -683,6 +1402,51 @@ entries: urls: - released/assets/rancher-backup-crd/rancher-backup-crd-1.0.400.tgz version: 1.0.400 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: cattle-resources-system + catalog.cattle.io/release-name: rancher-backup-crd + apiVersion: v2 + appVersion: 1.0.4 + created: "2021-04-28T01:10:40.11435389Z" + description: Installs the CRDs for rancher-backup. + digest: 70987ef10c86033fe8c44ff4157e5e35d0f2e134e7ec4f53d387c604f087278c + name: rancher-backup-crd + type: application + urls: + - assets/rancher-backup-crd/rancher-backup-crd-1.0.400-rc04.tgz + version: 1.0.400-rc04 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: cattle-resources-system + catalog.cattle.io/release-name: rancher-backup-crd + apiVersion: v2 + appVersion: 1.0.4 + created: "2021-04-28T01:10:40.114110393Z" + description: Installs the CRDs for rancher-backup. + digest: 0c8a620d826dce7c5ef2edffda3b51caf8dbce3f15f412c25e7abc31988b234c + name: rancher-backup-crd + type: application + urls: + - assets/rancher-backup-crd/rancher-backup-crd-1.0.400-rc03.tgz + version: 1.0.400-rc03 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: cattle-resources-system + catalog.cattle.io/release-name: rancher-backup-crd + apiVersion: v2 + appVersion: 1.0.4 + created: "2021-04-28T01:10:40.113869197Z" + description: Installs the CRDs for rancher-backup. + digest: caafbea7cdbcc266d2fd3f5e9379fb471a700eef94f2cfc864926aed230a9817 + name: rancher-backup-crd + type: application + urls: + - assets/rancher-backup-crd/rancher-backup-crd-1.0.400-rc02.tgz + version: 1.0.400-rc02 - annotations: catalog.cattle.io/certified: rancher catalog.cattle.io/hidden: "true" @@ -697,6 +1461,20 @@ entries: urls: - released/assets/rancher-backup/rancher-backup-crd-1.0.301.tgz version: 1.0.301 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: cattle-resources-system + catalog.cattle.io/release-name: rancher-backup-crd + apiVersion: v1 + created: "2021-04-28T01:10:40.113541801Z" + description: Installs the CRDs for rancher-backup. + digest: f7b68a31d3831686dc92b8e16a9ce72e850492332f3952a4567040cabd4174a6 + name: rancher-backup-crd + type: application + urls: + - assets/rancher-backup/rancher-backup-crd-1.0.301-rc01.tgz + version: 1.0.301-rc01 - annotations: catalog.cattle.io/certified: rancher catalog.cattle.io/hidden: "true" @@ -752,7 +1530,8 @@ entries: apiVersion: v1 appVersion: v1.0.4 created: "2021-04-27T19:45:02.477453837Z" - description: The cis-operator enables running CIS benchmark security scans on a kubernetes cluster + description: The cis-operator enables running CIS benchmark security scans on + a kubernetes cluster digest: e302f37c9d77a839bb07165cfdb2ede3ab1fecb7d414c09eaa8031cda4981fcd icon: https://charts.rancher.io/assets/logos/cis-kube-bench.svg keywords: @@ -761,6 +1540,116 @@ entries: urls: - released/assets/rancher-cis-benchmark/rancher-cis-benchmark-1.0.400.tgz version: 1.0.400 + - annotations: + catalog.cattle.io/auto-install: rancher-cis-benchmark-crd=match + catalog.cattle.io/certified: rancher + catalog.cattle.io/display-name: CIS Benchmark + catalog.cattle.io/namespace: cis-operator-system + catalog.cattle.io/os: linux + catalog.cattle.io/provides-gvr: cis.cattle.io.clusterscans/v1 + catalog.cattle.io/release-name: rancher-cis-benchmark + catalog.cattle.io/ui-component: rancher-cis-benchmark + apiVersion: v1 + appVersion: v1.0.4 + created: "2021-04-28T01:10:40.119054724Z" + description: The cis-operator enables running CIS benchmark security scans on + a kubernetes cluster + digest: 0f186a3f300fadecedcc6cd5112e53f3b60cb5c66b97d6e62a3858497f556b34 + icon: https://charts.rancher.io/assets/logos/cis-kube-bench.svg + keywords: + - security + name: rancher-cis-benchmark + urls: + - assets/rancher-cis-benchmark/rancher-cis-benchmark-1.0.400-rc04.tgz + version: 1.0.400-rc04 + - annotations: + catalog.cattle.io/auto-install: rancher-cis-benchmark-crd=match + catalog.cattle.io/certified: rancher + catalog.cattle.io/display-name: CIS Benchmark + catalog.cattle.io/namespace: cis-operator-system + catalog.cattle.io/os: linux + catalog.cattle.io/provides-gvr: cis.cattle.io.clusterscans/v1 + catalog.cattle.io/release-name: rancher-cis-benchmark + catalog.cattle.io/ui-component: rancher-cis-benchmark + apiVersion: v1 + appVersion: v1.0.4 + created: "2021-04-28T01:10:40.118356834Z" + description: The cis-operator enables running CIS benchmark security scans on + a kubernetes cluster + digest: c244a44f87f1da19aa659da94e4280bac53925594c7f915b39d9ec5a7ca864a2 + icon: https://charts.rancher.io/assets/logos/cis-kube-bench.svg + keywords: + - security + name: rancher-cis-benchmark + urls: + - assets/rancher-cis-benchmark/rancher-cis-benchmark-1.0.400-rc03.tgz + version: 1.0.400-rc03 + - annotations: + catalog.cattle.io/auto-install: rancher-cis-benchmark-crd=match + catalog.cattle.io/certified: rancher + catalog.cattle.io/display-name: CIS Benchmark + catalog.cattle.io/namespace: cis-operator-system + catalog.cattle.io/os: linux + catalog.cattle.io/provides-gvr: cis.cattle.io.clusterscans/v1 + catalog.cattle.io/release-name: rancher-cis-benchmark + catalog.cattle.io/ui-component: rancher-cis-benchmark + apiVersion: v1 + appVersion: v1.0.4 + created: "2021-04-28T01:10:40.117805841Z" + description: The cis-operator enables running CIS benchmark security scans on + a kubernetes cluster + digest: ef5a38f090505b3a993d9e399f7e132b13878c1a987c3d407553d96ad9b71f10 + icon: https://charts.rancher.io/assets/logos/cis-kube-bench.svg + keywords: + - security + name: rancher-cis-benchmark + urls: + - assets/rancher-cis-benchmark/rancher-cis-benchmark-1.0.400-rc02.tgz + version: 1.0.400-rc02 + - annotations: + catalog.cattle.io/auto-install: rancher-cis-benchmark-crd=match + catalog.cattle.io/certified: rancher + catalog.cattle.io/display-name: CIS Benchmark + catalog.cattle.io/namespace: cis-operator-system + catalog.cattle.io/os: linux + catalog.cattle.io/provides-gvr: cis.cattle.io.clusterscans/v1 + catalog.cattle.io/release-name: rancher-cis-benchmark + catalog.cattle.io/ui-component: rancher-cis-benchmark + apiVersion: v1 + appVersion: v1.0.4 + created: "2021-04-28T01:10:40.116713557Z" + description: The cis-operator enables running CIS benchmark security scans on + a kubernetes cluster + digest: 6cf3883441691b96775bf5ef7a0a8983b4ce147651125ad5351f6d3373ebe236 + icon: https://charts.rancher.io/assets/logos/cis-kube-bench.svg + keywords: + - security + name: rancher-cis-benchmark + urls: + - assets/rancher-cis-benchmark/rancher-cis-benchmark-1.0.400-rc01.tgz + version: 1.0.400-rc01 + - annotations: + catalog.cattle.io/auto-install: rancher-cis-benchmark-crd=match + catalog.cattle.io/certified: rancher + catalog.cattle.io/display-name: CIS Benchmark + catalog.cattle.io/namespace: cis-operator-system + catalog.cattle.io/os: linux + catalog.cattle.io/provides-gvr: cis.cattle.io.clusterscans/v1 + catalog.cattle.io/release-name: rancher-cis-benchmark + catalog.cattle.io/ui-component: rancher-cis-benchmark + apiVersion: v1 + appVersion: v1.0.3 + created: "2021-04-28T01:10:40.116139465Z" + description: The cis-operator enables running CIS benchmark security scans on + a kubernetes cluster + digest: e4e71c09635bf2c56580c7031ba3c0336e1b3376b34049db60e9ceb755a26dbd + icon: https://charts.rancher.io/assets/logos/cis-kube-bench.svg + keywords: + - security + name: rancher-cis-benchmark + urls: + - assets/rancher-cis-benchmark/rancher-cis-benchmark-1.0.400-rc00.tgz + version: 1.0.400-rc00 - annotations: catalog.cattle.io/auto-install: rancher-cis-benchmark-crd=match catalog.cattle.io/certified: rancher @@ -773,7 +1662,8 @@ entries: apiVersion: v1 appVersion: v1.0.3 created: "2021-04-27T19:45:02.476653828Z" - description: The cis-operator enables running CIS benchmark security scans on a kubernetes cluster + description: The cis-operator enables running CIS benchmark security scans on + a kubernetes cluster digest: c548033c5ec3822f2c89f0a1a19e3f4ce063f59a4ee021523642886ec3bf13a2 icon: https://charts.rancher.io/assets/logos/cis-kube-bench.svg keywords: @@ -782,6 +1672,28 @@ entries: urls: - released/assets/rancher-cis-benchmark/rancher-cis-benchmark-1.0.301.tgz version: 1.0.301 + - annotations: + catalog.cattle.io/auto-install: rancher-cis-benchmark-crd=match + catalog.cattle.io/certified: rancher + catalog.cattle.io/display-name: CIS Benchmark + catalog.cattle.io/namespace: cis-operator-system + catalog.cattle.io/os: linux + catalog.cattle.io/provides-gvr: cis.cattle.io.clusterscans/v1 + catalog.cattle.io/release-name: rancher-cis-benchmark + catalog.cattle.io/ui-component: rancher-cis-benchmark + apiVersion: v1 + appVersion: v1.0.3 + created: "2021-04-28T01:10:40.115281877Z" + description: The cis-operator enables running CIS benchmark security scans on + a kubernetes cluster + digest: 69fe084096e913c9625e3ec067df2476e219fd5fd4f1773b606a97989b5b8cfc + icon: https://charts.rancher.io/assets/logos/cis-kube-bench.svg + keywords: + - security + name: rancher-cis-benchmark + urls: + - assets/rancher-cis-benchmark/rancher-cis-benchmark-1.0.301-rc01.tgz + version: 1.0.301-rc01 - annotations: catalog.cattle.io/auto-install: rancher-cis-benchmark-crd=match catalog.cattle.io/certified: rancher @@ -794,7 +1706,8 @@ entries: apiVersion: v1 appVersion: v1.0.3 created: "2021-04-27T19:45:02.474504903Z" - description: The cis-operator enables running CIS benchmark security scans on a kubernetes cluster + description: The cis-operator enables running CIS benchmark security scans on + a kubernetes cluster digest: 2cce59f4f78b975edd93b0d707c5282fa44a6fa1f19d702ed4be8c221170c8d1 icon: https://charts.rancher.io/assets/logos/cis-kube-bench.svg keywords: @@ -815,7 +1728,8 @@ entries: apiVersion: v1 appVersion: v1.0.2 created: "2021-04-27T19:45:02.473730094Z" - description: The cis-operator enables running CIS benchmark security scans on a kubernetes cluster + description: The cis-operator enables running CIS benchmark security scans on + a kubernetes cluster digest: b3a6ce49c5e6918a1658f682fdf25e241d9638fde4b8c046a70562c13228c8c0 icon: https://charts.rancher.io/assets/logos/cis-kube-bench.svg keywords: @@ -835,7 +1749,8 @@ entries: apiVersion: v1 appVersion: v1.0.1 created: "2021-04-27T19:45:02.473063787Z" - description: The cis-operator enables running CIS benchmark security scans on a kubernetes cluster + description: The cis-operator enables running CIS benchmark security scans on + a kubernetes cluster digest: 407c19666ce5c083c50d8ef2cbc4fbc26b811106bbfc6b3d25a659a593c0aa3c icon: https://charts.rancher.io/assets/logos/cis-kube-bench.svg keywords: @@ -859,6 +1774,76 @@ entries: urls: - released/assets/rancher-cis-benchmark/rancher-cis-benchmark-crd-1.0.400.tgz version: 1.0.400 + - 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 + created: "2021-04-28T01:10:40.120808299Z" + description: Installs the CRDs for rancher-cis-benchmark. + digest: 4185ee2b5bbc50fa7e369f81be00cdf7ecae588051651449cdec35348d11749d + name: rancher-cis-benchmark-crd + type: application + urls: + - assets/rancher-cis-benchmark/rancher-cis-benchmark-crd-1.0.400-rc04.tgz + version: 1.0.400-rc04 + - 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 + created: "2021-04-28T01:10:40.120510903Z" + description: Installs the CRDs for rancher-cis-benchmark. + digest: a59c001dfa8b2f6cf30bc02ee90b3cd7d8e514cf9828b1d16226f66a0c4f0451 + name: rancher-cis-benchmark-crd + type: application + urls: + - assets/rancher-cis-benchmark/rancher-cis-benchmark-crd-1.0.400-rc03.tgz + version: 1.0.400-rc03 + - 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 + created: "2021-04-28T01:10:40.120248907Z" + description: Installs the CRDs for rancher-cis-benchmark. + digest: 8c5e8bd0587f16309a9a586914117f613e0e451fc462cee7a1761d16656666ef + name: rancher-cis-benchmark-crd + type: application + urls: + - assets/rancher-cis-benchmark/rancher-cis-benchmark-crd-1.0.400-rc02.tgz + version: 1.0.400-rc02 + - 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 + created: "2021-04-28T01:10:40.12005781Z" + description: Installs the CRDs for rancher-cis-benchmark. + digest: c45c3c7e9a5500376c75f2c5b96f24c25abc1e0ca98524913a69ba8c0445f776 + name: rancher-cis-benchmark-crd + type: application + urls: + - assets/rancher-cis-benchmark/rancher-cis-benchmark-crd-1.0.400-rc01.tgz + version: 1.0.400-rc01 + - 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 + created: "2021-04-28T01:10:40.119862413Z" + description: Installs the CRDs for rancher-cis-benchmark. + digest: f60d4f0e1c3d1c0824eb920b825f3d9ccd1b0738953c695acfa215974ac0d334 + name: rancher-cis-benchmark-crd + type: application + urls: + - assets/rancher-cis-benchmark/rancher-cis-benchmark-crd-1.0.400-rc00.tgz + version: 1.0.400-rc00 - annotations: catalog.cattle.io/certified: rancher catalog.cattle.io/hidden: "true" @@ -873,6 +1858,20 @@ entries: urls: - released/assets/rancher-cis-benchmark/rancher-cis-benchmark-crd-1.0.301.tgz version: 1.0.301 + - 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 + created: "2021-04-28T01:10:40.119660015Z" + description: Installs the CRDs for rancher-cis-benchmark. + digest: 859666b60dd55bbde9ccab4e4035d0077351009012e8a75630c5424b2aa90891 + name: rancher-cis-benchmark-crd + type: application + urls: + - assets/rancher-cis-benchmark/rancher-cis-benchmark-crd-1.0.301-rc01.tgz + version: 1.0.301-rc01 - annotations: catalog.cattle.io/certified: rancher catalog.cattle.io/hidden: "true" @@ -887,6 +1886,20 @@ entries: urls: - released/assets/rancher-cis-benchmark/rancher-cis-benchmark-crd-1.0.300.tgz version: 1.0.300 + - 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 + created: "2021-04-28T01:10:40.11936012Z" + description: Installs the CRDs for rancher-cis-benchmark. + digest: c1c3fe4a892be9bac7f9f262f1df424790110d606b08f6e059381b0681e68dc3 + name: rancher-cis-benchmark-crd + type: application + urls: + - assets/rancher-cis-benchmark/rancher-cis-benchmark-crd-1.0.300-rc00.tgz + version: 1.0.300-rc00 - annotations: catalog.cattle.io/certified: rancher catalog.cattle.io/hidden: "true" @@ -943,6 +1956,34 @@ entries: urls: - released/assets/rancher-external-ip-webhook/rancher-external-ip-webhook-0.1.601.tgz version: 0.1.601 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/display-name: External IP Webhook + catalog.cattle.io/namespace: cattle-externalip-system + catalog.cattle.io/os: linux + catalog.cattle.io/release-name: rancher-external-ip-webhook + catalog.cattle.io/ui-component: rancher-external-ip-webhook + apiVersion: v1 + appVersion: v0.1.6 + created: "2021-04-28T01:10:40.121820785Z" + description: | + Deploy the external-ip-webhook to mitigate k8s CVE-2020-8554 + digest: 17dcf09bc8ab866c112882874ae1147f781d4b36c160441cbc31b95712eb7312 + home: https://github.com/rancher/externalip-webhook + keywords: + - cve + - externalip + - webhook + - security + maintainers: + - email: raul@rancher.com + name: rawmind0 + name: rancher-external-ip-webhook + sources: + - https://github.com/rancher/externalip-webhook + urls: + - assets/rancher-external-ip-webhook/rancher-external-ip-webhook-0.1.601-rc01.tgz + version: 0.1.601-rc01 - annotations: catalog.cattle.io/certified: rancher catalog.cattle.io/display-name: External IP Webhook @@ -1010,7 +2051,8 @@ entries: apiVersion: v1 appVersion: v3.3.0 created: "2021-04-27T19:45:02.487760854Z" - description: Modifies Open Policy Agent's upstream gatekeeper chart that provides policy-based control for cloud native environments + description: Modifies Open Policy Agent's upstream gatekeeper chart that provides + policy-based control for cloud native environments digest: 22a0923f2d3f73f67b1ef02ba6323e497426bf2ee88c2604b1f6301fdba7d64c home: https://github.com/open-policy-agent/gatekeeper icon: https://charts.rancher.io/assets/logos/gatekeeper.svg @@ -1023,6 +2065,32 @@ entries: urls: - released/assets/rancher-gatekeeper/rancher-gatekeeper-3.3.001.tgz version: 3.3.001 + - annotations: + catalog.cattle.io/auto-install: rancher-gatekeeper-crd=match + catalog.cattle.io/certified: rancher + catalog.cattle.io/display-name: OPA Gatekeeper + catalog.cattle.io/namespace: cattle-gatekeeper-system + catalog.cattle.io/os: linux + catalog.cattle.io/provides-gvr: config.gatekeeper.sh.config/v1alpha1 + catalog.cattle.io/release-name: rancher-gatekeeper + catalog.cattle.io/ui-component: gatekeeper + apiVersion: v1 + appVersion: v3.3.0 + created: "2021-04-28T01:10:40.123324364Z" + description: Modifies Open Policy Agent's upstream gatekeeper chart that provides + policy-based control for cloud native environments + digest: 704bd0ff8114dd0786a67a16d3573d7d96b1abeab6d25a6741e5acaa439595c5 + home: https://github.com/open-policy-agent/gatekeeper + icon: https://charts.rancher.io/assets/logos/gatekeeper.svg + keywords: + - open policy agent + - security + name: rancher-gatekeeper + sources: + - https://github.com/open-policy-agent/gatekeeper.git + urls: + - assets/rancher-gatekeeper/rancher-gatekeeper-3.3.001-rc00.tgz + version: 3.3.001-rc00 - annotations: catalog.cattle.io/auto-install: rancher-gatekeeper-crd=match catalog.cattle.io/certified: rancher @@ -1035,7 +2103,8 @@ entries: apiVersion: v1 appVersion: v3.3.0 created: "2021-04-27T19:45:02.486774343Z" - description: Modifies Open Policy Agent's upstream gatekeeper chart that provides policy-based control for cloud native environments + description: Modifies Open Policy Agent's upstream gatekeeper chart that provides + policy-based control for cloud native environments digest: cdd2cb75ded06543e55124c5086a12c06e323c0398319e8c8984c73e19dd58bc home: https://github.com/open-policy-agent/gatekeeper icon: https://charts.rancher.io/assets/logos/gatekeeper.svg @@ -1048,6 +2117,32 @@ entries: urls: - released/assets/rancher-gatekeeper/rancher-gatekeeper-3.3.000.tgz version: 3.3.000 + - annotations: + catalog.cattle.io/auto-install: rancher-gatekeeper-crd=match + catalog.cattle.io/certified: rancher + catalog.cattle.io/display-name: OPA Gatekeeper + catalog.cattle.io/namespace: cattle-gatekeeper-system + catalog.cattle.io/os: linux + catalog.cattle.io/provides-gvr: config.gatekeeper.sh.config/v1alpha1 + catalog.cattle.io/release-name: rancher-gatekeeper + catalog.cattle.io/ui-component: gatekeeper + apiVersion: v1 + appVersion: v3.3.0 + created: "2021-04-28T01:10:40.122557575Z" + description: Modifies Open Policy Agent's upstream gatekeeper chart that provides + policy-based control for cloud native environments + digest: af8f37b06a1187282a8a8524bec2b68f132cef0d840671c3dd02aab1b6dc9613 + home: https://github.com/open-policy-agent/gatekeeper + icon: https://charts.rancher.io/assets/logos/gatekeeper.svg + keywords: + - open policy agent + - security + name: rancher-gatekeeper + sources: + - https://github.com/open-policy-agent/gatekeeper.git + urls: + - assets/rancher-gatekeeper/rancher-gatekeeper-3.3.000-rc02.tgz + version: 3.3.000-rc02 - annotations: catalog.cattle.io/auto-install: rancher-gatekeeper-crd=match catalog.cattle.io/certified: rancher @@ -1061,7 +2156,8 @@ entries: apiVersion: v1 appVersion: v3.2.1 created: "2021-04-27T19:45:02.485740131Z" - description: Modifies Open Policy Agent's upstream gatekeeper chart that provides policy-based control for cloud native environments + description: Modifies Open Policy Agent's upstream gatekeeper chart that provides + policy-based control for cloud native environments digest: 3d0e961fc109e051f08edacf9e541e5ad1c0c65f046cae72459df0ca4aa22312 home: https://github.com/open-policy-agent/gatekeeper icon: https://charts.rancher.io/assets/logos/gatekeeper.svg @@ -1086,7 +2182,8 @@ entries: apiVersion: v1 appVersion: v3.1.1 created: "2021-04-27T19:45:02.484636619Z" - description: Modifies Open Policy Agent's upstream gatekeeper chart that provides policy-based control for cloud native environments + description: Modifies Open Policy Agent's upstream gatekeeper chart that provides + policy-based control for cloud native environments digest: 36aebc7718e4afd4d9bb65775276d2288eb0de27192d0d290553a7c7087d7f3f home: https://github.com/open-policy-agent/gatekeeper icon: https://charts.rancher.io/assets/logos/gatekeeper.svg @@ -1110,7 +2207,8 @@ entries: apiVersion: v1 appVersion: v3.1.1 created: "2021-04-27T19:45:02.483263203Z" - description: Modifies Open Policy Agent's upstream gatekeeper chart that provides policy-based control for cloud native environments + description: Modifies Open Policy Agent's upstream gatekeeper chart that provides + policy-based control for cloud native environments digest: 15a4540b7e32c62157c37cfdb9230ce4b11c5837a2f3734378fcd7ec9c824559 home: https://github.com/open-policy-agent/gatekeeper icon: https://charts.rancher.io/assets/logos/gatekeeper.svg @@ -1138,6 +2236,20 @@ entries: urls: - released/assets/rancher-gatekeeper/rancher-gatekeeper-crd-3.3.001.tgz version: 3.3.001 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: cattle-gatekeeper-system + catalog.cattle.io/release-name: rancher-gatekeeper-crd + apiVersion: v1 + created: "2021-04-28T01:10:40.124017854Z" + description: Installs the CRDs for rancher-gatekeeper. + digest: 3aa8a1c82e5ba772e1edee2a1c4cc38452eab2e3761a01bbaeea15dead79b03c + name: rancher-gatekeeper-crd + type: application + urls: + - assets/rancher-gatekeeper/rancher-gatekeeper-crd-3.3.001-rc00.tgz + version: 3.3.001-rc00 - annotations: catalog.cattle.io/certified: rancher catalog.cattle.io/hidden: "true" @@ -1152,6 +2264,20 @@ entries: urls: - released/assets/rancher-gatekeeper/rancher-gatekeeper-crd-3.3.000.tgz version: 3.3.000 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: cattle-gatekeeper-system + catalog.cattle.io/release-name: rancher-gatekeeper-crd + apiVersion: v1 + created: "2021-04-28T01:10:40.123654559Z" + description: Installs the CRDs for rancher-gatekeeper. + digest: 8a25a6b9070d7421adf12e81bcafb2b9450a49ee4e747349ab0d5a231ff2dd76 + name: rancher-gatekeeper-crd + type: application + urls: + - assets/rancher-gatekeeper/rancher-gatekeeper-crd-3.3.000-rc02.tgz + version: 3.3.000-rc02 - annotations: catalog.cattle.io/certified: rancher catalog.cattle.io/experimental: "true" @@ -1230,6 +2356,38 @@ entries: urls: - released/assets/rancher-grafana/rancher-grafana-6.6.401.tgz version: 6.6.401 + - annotations: + catalog.cattle.io/hidden: "true" + catalog.cattle.io/os: linux + catalog.rancher.io/certified: rancher + catalog.rancher.io/namespace: cattle-monitoring-system + catalog.rancher.io/release-name: rancher-grafana + apiVersion: v2 + appVersion: 7.4.5 + created: "2021-04-28T01:10:40.12645102Z" + description: The leading tool for querying and visualizing time series and metrics. + digest: 69f23123ec3971f85b620c12778dd63a092daf95feeba3ada0a616b77e0e2ab1 + home: https://grafana.net + icon: https://raw.githubusercontent.com/grafana/grafana/master/public/img/logo_transparent_400x.png + kubeVersion: ^1.8.0-0 + maintainers: + - email: zanhsieh@gmail.com + name: zanhsieh + - email: rluckie@cisco.com + name: rtluckie + - email: maor.friedman@redhat.com + name: maorfr + - email: miroslav.hadzhiev@gmail.com + name: Xtigyro + - email: mail@torstenwalter.de + name: torstenwalter + name: rancher-grafana + sources: + - https://github.com/grafana/grafana + type: application + urls: + - assets/rancher-grafana/rancher-grafana-6.6.401-rc00.tgz + version: 6.6.401-rc00 rancher-istio: - annotations: catalog.cattle.io/auto-install: rancher-kiali-server-crd=1.32.100 @@ -1252,7 +2410,8 @@ entries: - condition: tracing.enabled name: tracing repository: file://./charts/tracing - description: A basic Istio setup that installs with the istioctl. Refer to https://istio.io/latest/ for details. + description: A basic Istio setup that installs with the istioctl. Refer to https://istio.io/latest/ + for details. digest: e0b0d867515c227cd27adba84882491f81f36e8deff3b2300b34672663494a6f icon: https://charts.rancher.io/assets/logos/istio.svg keywords: @@ -1262,6 +2421,70 @@ entries: urls: - released/assets/rancher-istio-1.9/rancher-istio-1.9.300.tgz version: 1.9.300 + - annotations: + catalog.cattle.io/auto-install: rancher-kiali-server-crd=1.32.100-rc01 + catalog.cattle.io/certified: rancher + catalog.cattle.io/display-name: Istio + catalog.cattle.io/namespace: istio-system + catalog.cattle.io/os: linux + catalog.cattle.io/provides-gvr: networking.istio.io.virtualservice/v1beta1 + catalog.cattle.io/release-name: rancher-istio + catalog.cattle.io/requests-cpu: 710m + catalog.cattle.io/requests-memory: 2314Mi + catalog.cattle.io/ui-component: istio + apiVersion: v1 + appVersion: 1.9.3 + created: "2021-04-28T01:10:40.157872079Z" + dependencies: + - condition: kiali.enabled + name: kiali + repository: file://./charts/kiali + - condition: tracing.enabled + name: tracing + repository: file://./charts/tracing + description: A basic Istio setup that installs with the istioctl. Refer to https://istio.io/latest/ + for details. + digest: d075e77b4d847fa27e04e278cc21e8de914fd81b476d53dcbaa3a9d6648a9f43 + icon: https://charts.rancher.io/assets/logos/istio.svg + keywords: + - networking + - infrastructure + name: rancher-istio + urls: + - assets/rancher-istio-1.9/rancher-istio-1.9.300-rc03.tgz + version: 1.9.300-rc03 + - annotations: + catalog.cattle.io/auto-install: rancher-kiali-server-crd=1.32.100-rc01 + catalog.cattle.io/certified: rancher + catalog.cattle.io/display-name: Istio + catalog.cattle.io/namespace: istio-system + catalog.cattle.io/os: linux + catalog.cattle.io/provides-gvr: networking.istio.io.virtualservice/v1beta1 + catalog.cattle.io/release-name: rancher-istio + catalog.cattle.io/requests-cpu: 710m + catalog.cattle.io/requests-memory: 2314Mi + catalog.cattle.io/ui-component: istio + apiVersion: v1 + appVersion: 1.9.3 + created: "2021-04-28T01:10:40.155011119Z" + dependencies: + - condition: kiali.enabled + name: kiali + repository: file://./charts/kiali + - condition: tracing.enabled + name: tracing + repository: file://./charts/tracing + description: A basic Istio setup that installs with the istioctl. Refer to https://istio.io/latest/ + for details. + digest: 3059579374a09651dcd2d5ad98c40543fbd0fe840daa8cced51044445508cfa7 + icon: https://charts.rancher.io/assets/logos/istio.svg + keywords: + - networking + - infrastructure + name: rancher-istio + urls: + - assets/rancher-istio-1.9/rancher-istio-1.9.300-rc01.tgz + version: 1.9.300-rc01 - annotations: catalog.cattle.io/auto-install: rancher-kiali-server-crd=1.32.100 catalog.cattle.io/certified: rancher @@ -1283,7 +2506,8 @@ entries: - condition: tracing.enabled name: tracing repository: file://./charts/tracing - description: A basic Istio setup that installs with the istioctl. Refer to https://istio.io/latest/ for details. + description: A basic Istio setup that installs with the istioctl. Refer to https://istio.io/latest/ + for details. digest: 6857623d7a2551e4e13a2e88b73bca9a66e480f5fc0d2b9e5c693b088b5deab0 icon: https://charts.rancher.io/assets/logos/istio.svg keywords: @@ -1293,6 +2517,70 @@ entries: urls: - released/assets/rancher-istio-1.9/rancher-istio-1.9.200.tgz version: 1.9.200 + - annotations: + catalog.cattle.io/auto-install: rancher-kiali-server-crd=1.32.100-rc01 + catalog.cattle.io/certified: rancher + catalog.cattle.io/display-name: Istio + catalog.cattle.io/namespace: istio-system + catalog.cattle.io/os: linux + catalog.cattle.io/provides-gvr: networking.istio.io.virtualservice/v1beta1 + catalog.cattle.io/release-name: rancher-istio + catalog.cattle.io/requests-cpu: 710m + catalog.cattle.io/requests-memory: 2314Mi + catalog.cattle.io/ui-component: istio + apiVersion: v1 + appVersion: 1.9.2 + created: "2021-04-28T01:10:40.150937876Z" + dependencies: + - condition: kiali.enabled + name: kiali + repository: file://./charts/kiali + - condition: tracing.enabled + name: tracing + repository: file://./charts/tracing + description: A basic Istio setup that installs with the istioctl. Refer to https://istio.io/latest/ + for details. + digest: 5d90dffbb8b4bbb44e11e0754e5f7e729709342fb317da46f46d7f0c001e485e + icon: https://charts.rancher.io/assets/logos/istio.svg + keywords: + - networking + - infrastructure + name: rancher-istio + urls: + - assets/rancher-istio-1.9/rancher-istio-1.9.200-rc02.tgz + version: 1.9.200-rc02 + - annotations: + catalog.cattle.io/auto-install: rancher-kiali-server-crd=1.29.100-rc01 + catalog.cattle.io/certified: rancher + catalog.cattle.io/display-name: Istio + catalog.cattle.io/namespace: istio-system + catalog.cattle.io/os: linux + catalog.cattle.io/provides-gvr: networking.istio.io.virtualservice/v1beta1 + catalog.cattle.io/release-name: rancher-istio + catalog.cattle.io/requests-cpu: 710m + catalog.cattle.io/requests-memory: 2314Mi + catalog.cattle.io/ui-component: istio + apiVersion: v1 + appVersion: 1.9.2 + created: "2021-04-28T01:10:40.14777772Z" + dependencies: + - condition: kiali.enabled + name: kiali + repository: file://./charts/kiali + - condition: tracing.enabled + name: tracing + repository: file://./charts/tracing + description: A basic Istio setup that installs with the istioctl. Refer to https://istio.io/latest/ + for details. + digest: 831b0c704be191da3d0b1db1b0dd1dc8280515d04d4698b95090c5186a70d99c + icon: https://charts.rancher.io/assets/logos/istio.svg + keywords: + - networking + - infrastructure + name: rancher-istio + urls: + - assets/rancher-istio-1.9/rancher-istio-1.9.200-rc01.tgz + version: 1.9.200-rc01 - annotations: catalog.cattle.io/auto-install: rancher-kiali-server-crd=1.32.100 catalog.cattle.io/certified: rancher @@ -1314,7 +2602,8 @@ entries: - condition: tracing.enabled name: tracing repository: file://./charts/tracing - description: A basic Istio setup that installs with the istioctl. Refer to https://istio.io/latest/ for details. + description: A basic Istio setup that installs with the istioctl. Refer to https://istio.io/latest/ + for details. digest: 7c3c3afb91d1332cd4e67139e2f48355cafc8b20472d2513038003aca37d6305 icon: https://charts.rancher.io/assets/logos/istio.svg keywords: @@ -1324,6 +2613,70 @@ entries: urls: - released/assets/rancher-istio-1.8/rancher-istio-1.8.500.tgz version: 1.8.500 + - annotations: + catalog.cattle.io/auto-install: rancher-kiali-server-crd=1.32.100-rc01 + catalog.cattle.io/certified: rancher + catalog.cattle.io/display-name: Istio + catalog.cattle.io/namespace: istio-system + catalog.cattle.io/os: linux + catalog.cattle.io/provides-gvr: networking.istio.io.virtualservice/v1beta1 + catalog.cattle.io/release-name: rancher-istio + catalog.cattle.io/requests-cpu: 710m + catalog.cattle.io/requests-memory: 2314Mi + catalog.cattle.io/ui-component: istio + apiVersion: v1 + appVersion: 1.8.5 + created: "2021-04-28T01:10:40.144680164Z" + dependencies: + - condition: kiali.enabled + name: kiali + repository: file://./charts/kiali + - condition: tracing.enabled + name: tracing + repository: file://./charts/tracing + description: A basic Istio setup that installs with the istioctl. Refer to https://istio.io/latest/ + for details. + digest: 4677863a458d67f8f8797c452ef0a0c8f0d261735488bf66f41973f6c9d7fa5e + icon: https://charts.rancher.io/assets/logos/istio.svg + keywords: + - networking + - infrastructure + name: rancher-istio + urls: + - assets/rancher-istio-1.8/rancher-istio-1.8.500-rc03.tgz + version: 1.8.500-rc03 + - annotations: + catalog.cattle.io/auto-install: rancher-kiali-server-crd=1.32.100-rc01 + catalog.cattle.io/certified: rancher + catalog.cattle.io/display-name: Istio + catalog.cattle.io/namespace: istio-system + catalog.cattle.io/os: linux + catalog.cattle.io/provides-gvr: networking.istio.io.virtualservice/v1beta1 + catalog.cattle.io/release-name: rancher-istio + catalog.cattle.io/requests-cpu: 710m + catalog.cattle.io/requests-memory: 2314Mi + catalog.cattle.io/ui-component: istio + apiVersion: v1 + appVersion: 1.8.5 + created: "2021-04-28T01:10:40.141585107Z" + dependencies: + - condition: kiali.enabled + name: kiali + repository: file://./charts/kiali + - condition: tracing.enabled + name: tracing + repository: file://./charts/tracing + description: A basic Istio setup that installs with the istioctl. Refer to https://istio.io/latest/ + for details. + digest: dc5046c45f15be0cfcd219d4d87bc73bd9e50f575260c4918a719c93e5f69c7d + icon: https://charts.rancher.io/assets/logos/istio.svg + keywords: + - networking + - infrastructure + name: rancher-istio + urls: + - assets/rancher-istio-1.8/rancher-istio-1.8.500-rc01.tgz + version: 1.8.500-rc01 - annotations: catalog.cattle.io/auto-install: rancher-kiali-server-crd=1.32.100 catalog.cattle.io/certified: rancher @@ -1345,7 +2698,8 @@ entries: - condition: tracing.enabled name: tracing repository: file://./charts/tracing - description: A basic Istio setup that installs with the istioctl. Refer to https://istio.io/latest/ for details. + description: A basic Istio setup that installs with the istioctl. Refer to https://istio.io/latest/ + for details. digest: afe8c9ff8283153adc6400c4ae85aa7ee5c58307cc55ab725174587c5ccce15e icon: https://charts.rancher.io/assets/logos/istio.svg keywords: @@ -1355,6 +2709,70 @@ entries: urls: - released/assets/rancher-istio-1.8/rancher-istio-1.8.400.tgz version: 1.8.400 + - annotations: + catalog.cattle.io/auto-install: rancher-kiali-server-crd=1.32.100-rc01 + catalog.cattle.io/certified: rancher + catalog.cattle.io/display-name: Istio + catalog.cattle.io/namespace: istio-system + catalog.cattle.io/os: linux + catalog.cattle.io/provides-gvr: networking.istio.io.virtualservice/v1beta1 + catalog.cattle.io/release-name: rancher-istio + catalog.cattle.io/requests-cpu: 710m + catalog.cattle.io/requests-memory: 2314Mi + catalog.cattle.io/ui-component: istio + apiVersion: v1 + appVersion: 1.8.4 + created: "2021-04-28T01:10:40.138849546Z" + dependencies: + - condition: kiali.enabled + name: kiali + repository: file://./charts/kiali + - condition: tracing.enabled + name: tracing + repository: file://./charts/tracing + description: A basic Istio setup that installs with the istioctl. Refer to https://istio.io/latest/ + for details. + digest: 8ee32e27c2dd471aeb9a3a1c3794738e6d795cad8fc8a92adb8ac74c61d60904 + icon: https://charts.rancher.io/assets/logos/istio.svg + keywords: + - networking + - infrastructure + name: rancher-istio + urls: + - assets/rancher-istio-1.8/rancher-istio-1.8.400-rc02.tgz + version: 1.8.400-rc02 + - annotations: + catalog.cattle.io/auto-install: rancher-kiali-server-crd=1.29.100-rc01 + catalog.cattle.io/certified: rancher + catalog.cattle.io/display-name: Istio + catalog.cattle.io/namespace: istio-system + catalog.cattle.io/os: linux + catalog.cattle.io/provides-gvr: networking.istio.io.virtualservice/v1beta1 + catalog.cattle.io/release-name: rancher-istio + catalog.cattle.io/requests-cpu: 710m + catalog.cattle.io/requests-memory: 2314Mi + catalog.cattle.io/ui-component: istio + apiVersion: v1 + appVersion: 1.8.4 + created: "2021-04-28T01:10:40.136375681Z" + dependencies: + - condition: kiali.enabled + name: kiali + repository: file://./charts/kiali + - condition: tracing.enabled + name: tracing + repository: file://./charts/tracing + description: A basic Istio setup that installs with the istioctl. Refer to https://istio.io/latest/ + for details. + digest: 09298ac04dc8001c41b6c4366a660c8b12c6b52b699205ee0e5941cc20cf9b2a + icon: https://charts.rancher.io/assets/logos/istio.svg + keywords: + - networking + - infrastructure + name: rancher-istio + urls: + - assets/rancher-istio-1.8/rancher-istio-1.8.400-rc01.tgz + version: 1.8.400-rc01 - annotations: catalog.cattle.io/auto-install: rancher-kiali-server-crd=1.29.100 catalog.cattle.io/certified: rancher @@ -1376,7 +2794,8 @@ entries: - condition: tracing.enabled name: tracing repository: file://./charts/tracing - description: A basic Istio setup that installs with the istioctl. Refer to https://istio.io/latest/ for details. + description: A basic Istio setup that installs with the istioctl. Refer to https://istio.io/latest/ + for details. digest: 2e4b3e8ab00cde158a1b897b5812fd6c63f9ec6a2f227a14f1a07cee68c32d7b icon: https://charts.rancher.io/assets/logos/istio.svg keywords: @@ -1386,6 +2805,38 @@ entries: urls: - released/assets/rancher-istio-1.8/rancher-istio-1.8.301.tgz version: 1.8.301 + - annotations: + catalog.cattle.io/auto-install: rancher-kiali-server-crd=1.29.100-rc01 + catalog.cattle.io/certified: rancher + catalog.cattle.io/display-name: Istio + catalog.cattle.io/namespace: istio-system + catalog.cattle.io/os: linux + catalog.cattle.io/provides-gvr: networking.istio.io.virtualservice/v1beta1 + catalog.cattle.io/release-name: rancher-istio + catalog.cattle.io/requests-cpu: 710m + catalog.cattle.io/requests-memory: 2314Mi + catalog.cattle.io/ui-component: istio + apiVersion: v1 + appVersion: 1.8.3 + created: "2021-04-28T01:10:40.133851316Z" + dependencies: + - condition: kiali.enabled + name: kiali + repository: file://./charts/kiali + - condition: tracing.enabled + name: tracing + repository: file://./charts/tracing + description: A basic Istio setup that installs with the istioctl. Refer to https://istio.io/latest/ + for details. + digest: d4fd53635e7b3a8bc0c429ecbbb4d1003f854b7c7b94e58bc66f226593431611 + icon: https://charts.rancher.io/assets/logos/istio.svg + keywords: + - networking + - infrastructure + name: rancher-istio + urls: + - assets/rancher-istio-1.8/rancher-istio-1.8.301-rc00.tgz + version: 1.8.301-rc00 - annotations: catalog.cattle.io/auto-install: rancher-kiali-server-crd=1.29.000 catalog.cattle.io/certified: rancher @@ -1407,7 +2858,8 @@ entries: - condition: tracing.enabled name: tracing repository: file://./charts/tracing - description: A basic Istio setup that installs with the istioctl. Refer to https://istio.io/latest/ for details. + description: A basic Istio setup that installs with the istioctl. Refer to https://istio.io/latest/ + for details. digest: 3b5fdc7d06c6a3878c47030ff2a9e23ef1ab68ceddcb9fd7290f4e3ef3c99cb0 icon: https://charts.rancher.io/assets/logos/istio.svg keywords: @@ -1417,6 +2869,38 @@ entries: urls: - released/assets/rancher-istio/rancher-istio-1.8.300.tgz version: 1.8.300 + - annotations: + catalog.cattle.io/auto-install: rancher-kiali-server-crd=1.29.000-rc00 + catalog.cattle.io/certified: rancher + catalog.cattle.io/display-name: Istio + catalog.cattle.io/namespace: istio-system + catalog.cattle.io/os: linux + catalog.cattle.io/provides-gvr: networking.istio.io.virtualservice/v1beta1 + catalog.cattle.io/release-name: rancher-istio + catalog.cattle.io/requests-cpu: 710m + catalog.cattle.io/requests-memory: 2314Mi + catalog.cattle.io/ui-component: istio + apiVersion: v1 + appVersion: 1.8.3 + created: "2021-04-28T01:10:40.129702274Z" + dependencies: + - condition: kiali.enabled + name: kiali + repository: file://./charts/kiali + - condition: tracing.enabled + name: tracing + repository: file://./charts/tracing + description: A basic Istio setup that installs with the istioctl. Refer to https://istio.io/latest/ + for details. + digest: f5bf59041cc7b488dd9c33f1251fcbda7f6c96d719763c87a9086e70629d0896 + icon: https://charts.rancher.io/assets/logos/istio.svg + keywords: + - networking + - infrastructure + name: rancher-istio + urls: + - assets/rancher-istio/rancher-istio-1.8.300-rc01.tgz + version: 1.8.300-rc01 - annotations: catalog.cattle.io/auto-install: rancher-kiali-server-crd=1.24.003 catalog.cattle.io/certified: rancher @@ -1440,7 +2924,8 @@ entries: name: rancher-tracing repository: file://../../rancher-tracing/charts version: 1.20.001 - description: A basic Istio setup that installs with the istioctl. Refer to https://istio.io/latest/ for details. + description: A basic Istio setup that installs with the istioctl. Refer to https://istio.io/latest/ + for details. digest: ff28763d01f5b7b366ea0373bd052bbe579f17c009955c88e7cbb5eb66802e84 icon: https://charts.rancher.io/assets/logos/istio.svg keywords: @@ -1468,7 +2953,8 @@ entries: name: rancher-kiali-server repository: file://../../rancher-kiali-server/charts version: 1.24.0 - description: A basic Istio setup that installs with the istioctl. Refer to https://istio.io/latest/ for details. + description: A basic Istio setup that installs with the istioctl. Refer to https://istio.io/latest/ + for details. digest: 1e4a14509830e72f8a3d10d6d3ffaf72683dc0243e2cd9d067934844163f9f80 icon: https://charts.rancher.io/assets/logos/istio.svg keywords: @@ -1496,7 +2982,8 @@ entries: name: rancher-kiali-server repository: file://../../rancher-kiali-server/charts version: 1.23.0 - description: A basic Istio setup that installs with the istioctl. Refer to https://istio.io/latest/ for details. + description: A basic Istio setup that installs with the istioctl. Refer to https://istio.io/latest/ + for details. digest: 3a7a84aa165a472cf346a4d595ff84ac8190d7f050409b65f2a7168c8307ef28 icon: https://charts.rancher.io/assets/logos/istio.svg keywords: @@ -1518,7 +3005,9 @@ entries: apiVersion: v2 appVersion: v1.32.0 created: "2021-04-27T19:45:02.529051225Z" - description: Kiali is an open source project for service mesh observability, refer to https://www.kiali.io for details. This is installed as sub-chart with customized values in Rancher's Istio. + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. This is installed as sub-chart with customized + values in Rancher's Istio. digest: 00dfd4839f9a89734e03aca4b73bba15a8dc4b08ead0e3975316c88e3ccb8473 home: https://github.com/kiali/kiali icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png @@ -1540,6 +3029,41 @@ entries: urls: - released/assets/rancher-kiali-server/rancher-kiali-server-1.32.100.tgz version: 1.32.100 + - annotations: + catalog.cattle.io/auto-install: rancher-kiali-server-crd=match + catalog.cattle.io/hidden: "true" + catalog.cattle.io/os: linux + catalog.cattle.io/provides-gvr: monitoringdashboards.monitoring.kiali.io/v1alpha1 + catalog.cattle.io/requires-gvr: monitoring.coreos.com.prometheus/v1 + catalog.rancher.io/namespace: cattle-istio-system + catalog.rancher.io/release-name: rancher-kiali-server + apiVersion: v2 + appVersion: v1.32.0 + created: "2021-04-28T01:10:40.160977335Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. This is installed as sub-chart with customized + values in Rancher's Istio. + digest: 5c936508b33a984898c6c3d791625b4bb8cbab94326cae669c815965be8ee74c + home: https://github.com/kiali/kiali + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + - networking + - infrastructure + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: rancher-kiali-server + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-ui + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - assets/rancher-kiali-server/rancher-kiali-server-1.32.100-rc01.tgz + version: 1.32.100-rc01 - annotations: catalog.cattle.io/auto-install: rancher-kiali-server-crd=match catalog.cattle.io/hidden: "true" @@ -1551,7 +3075,9 @@ entries: apiVersion: v2 appVersion: v1.29.0 created: "2021-04-27T19:45:02.52774961Z" - description: Kiali is an open source project for service mesh observability, refer to https://www.kiali.io for details. This is installed as sub-chart with customized values in Rancher's Istio. + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. This is installed as sub-chart with customized + values in Rancher's Istio. digest: 4b29d646f2e842b1304fe73815b1a96dd60dc881dd31645cba8c2da2b0eb8a6c home: https://github.com/kiali/kiali icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png @@ -1573,6 +3099,41 @@ entries: urls: - released/assets/rancher-kiali-server/rancher-kiali-server-1.29.100.tgz version: 1.29.100 + - annotations: + catalog.cattle.io/auto-install: rancher-kiali-server-crd=match + catalog.cattle.io/hidden: "true" + catalog.cattle.io/os: linux + catalog.cattle.io/provides-gvr: monitoringdashboards.monitoring.kiali.io/v1alpha1 + catalog.cattle.io/requires-gvr: monitoring.coreos.com.prometheus/v1 + catalog.rancher.io/namespace: cattle-istio-system + catalog.rancher.io/release-name: rancher-kiali-server + apiVersion: v2 + appVersion: v1.29.0 + created: "2021-04-28T01:10:40.15994435Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. This is installed as sub-chart with customized + values in Rancher's Istio. + digest: bf98263f3c467b94c57687a26e7de82a06835ba45680231a531d6f05ae0c39fd + home: https://github.com/kiali/kiali + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + - networking + - infrastructure + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: rancher-kiali-server + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-ui + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - assets/rancher-kiali-server/rancher-kiali-server-1.29.100-rc01.tgz + version: 1.29.100-rc01 - annotations: catalog.cattle.io/auto-install: rancher-kiali-server-crd=match catalog.cattle.io/hidden: "true" @@ -1584,7 +3145,9 @@ entries: apiVersion: v2 appVersion: v1.29.0 created: "2021-04-27T19:45:02.526486795Z" - description: Kiali is an open source project for service mesh observability, refer to https://www.kiali.io for details. This is installed as sub-chart with customized values in Rancher's Istio. + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. This is installed as sub-chart with customized + values in Rancher's Istio. digest: 8cecd60c2fa1ae2dea0c4d3672b7ca73152835bfeb93906113ca4d05c02e9587 home: https://github.com/kiali/kiali icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png @@ -1606,6 +3169,41 @@ entries: urls: - released/assets/rancher-kiali-server/rancher-kiali-server-1.29.000.tgz version: 1.29.000 + - annotations: + catalog.cattle.io/auto-install: rancher-kiali-server-crd=match + catalog.cattle.io/hidden: "true" + catalog.cattle.io/os: linux + catalog.cattle.io/provides-gvr: monitoringdashboards.monitoring.kiali.io/v1alpha1 + catalog.cattle.io/requires-gvr: monitoring.coreos.com.prometheus/v1 + catalog.rancher.io/namespace: cattle-istio-system + catalog.rancher.io/release-name: rancher-kiali-server + apiVersion: v2 + appVersion: v1.29.0 + created: "2021-04-28T01:10:40.158887864Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. This is installed as sub-chart with customized + values in Rancher's Istio. + digest: 889268d3300d61b90ac9c14cec994a00d7880a45ab7af5b94631004a54378799 + home: https://github.com/kiali/kiali + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + - networking + - infrastructure + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: rancher-kiali-server + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-ui + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - assets/rancher-kiali-server/rancher-kiali-server-1.29.000-rc01.tgz + version: 1.29.000-rc01 - annotations: catalog.cattle.io/auto-install: rancher-kiali-server-crd=match catalog.cattle.io/hidden: "true" @@ -1617,7 +3215,9 @@ entries: apiVersion: v2 appVersion: v1.24.0 created: "2021-04-27T19:45:02.52513848Z" - description: Kiali is an open source project for service mesh observability, refer to https://www.kiali.io for details. This is installed as sub-chart with customized values in Rancher's Istio. + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. This is installed as sub-chart with customized + values in Rancher's Istio. digest: 2b702639bc1b563fa3e9e0cdb5fff1ca4de696860566f1c863c04fb7ebc06038 home: https://github.com/kiali/kiali icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png @@ -1650,7 +3250,9 @@ entries: apiVersion: v2 appVersion: v1.24.0 created: "2021-04-27T19:45:02.523975167Z" - description: Kiali is an open source project for service mesh observability, refer to https://www.kiali.io for details. This is installed as sub-chart with customized values in Rancher's Istio. + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. This is installed as sub-chart with customized + values in Rancher's Istio. digest: a86791daaf668b0f67db337a9f37f13d4a836d9bd689401ba2ef8f6e83d9a6a3 home: https://github.com/kiali/kiali icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png @@ -1683,7 +3285,9 @@ entries: apiVersion: v2 appVersion: v1.23.0 created: "2021-04-27T19:45:02.522171346Z" - description: Kiali is an open source project for service mesh observability, refer to https://www.kiali.io for details. This is installed as sub-chart with customized values in Rancher's Istio. + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. This is installed as sub-chart with customized + values in Rancher's Istio. digest: 0aea4d28b274a7c2549f675c2a3fc1be165ef4acd72676a18ed5f92f1e7a2b1a home: https://github.com/kiali/kiali icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png @@ -1717,6 +3321,17 @@ entries: urls: - released/assets/rancher-kiali-server/rancher-kiali-server-crd-1.32.100.tgz version: 1.32.100 + - annotations: + catalog.cattle.io/hidden: "true" + apiVersion: v2 + created: "2021-04-28T01:10:40.161452728Z" + description: Installs the CRDs for rancher-kiali-server. + digest: 79fc00840cdd10b61ae09a3e964d915b10366f1f016fd02919a875469e3e6d0e + name: rancher-kiali-server-crd + type: application + urls: + - assets/rancher-kiali-server/rancher-kiali-server-crd-1.32.100-rc01.tgz + version: 1.32.100-rc01 - annotations: catalog.cattle.io/hidden: "true" apiVersion: v2 @@ -1728,6 +3343,17 @@ entries: urls: - released/assets/rancher-kiali-server/rancher-kiali-server-crd-1.29.100.tgz version: 1.29.100 + - annotations: + catalog.cattle.io/hidden: "true" + apiVersion: v2 + created: "2021-04-28T01:10:40.161265831Z" + description: Installs the CRDs for rancher-kiali-server. + digest: fca33d9256cbede5244784e9f8cf2d6b4ed3556b5cc59ed3178171887560826e + name: rancher-kiali-server-crd + type: application + urls: + - assets/rancher-kiali-server/rancher-kiali-server-crd-1.29.100-rc01.tgz + version: 1.29.100-rc01 - annotations: catalog.cattle.io/hidden: "true" apiVersion: v2 @@ -1739,6 +3365,17 @@ entries: urls: - released/assets/rancher-kiali-server/rancher-kiali-server-crd-1.29.000.tgz version: 1.29.000 + - annotations: + catalog.cattle.io/hidden: "true" + apiVersion: v2 + created: "2021-04-28T01:10:40.161131733Z" + description: Installs the CRDs for rancher-kiali-server. + digest: a235e592d5d924e1dea15c19af5f163425213e3547654e427f43464f58fd9927 + name: rancher-kiali-server-crd + type: application + urls: + - assets/rancher-kiali-server/rancher-kiali-server-crd-1.29.000-rc01.tgz + version: 1.29.000-rc01 - annotations: catalog.cattle.io/hidden: "true" apiVersion: v2 @@ -1801,6 +3438,34 @@ entries: urls: - released/assets/rancher-kube-state-metrics/rancher-kube-state-metrics-2.13.101.tgz version: 2.13.101 + - annotations: + catalog.cattle.io/hidden: "true" + catalog.cattle.io/os: linux + catalog.rancher.io/certified: rancher + catalog.rancher.io/namespace: cattle-monitoring-system + catalog.rancher.io/release-name: rancher-kube-state-metrics + apiVersion: v1 + appVersion: 1.9.8 + created: "2021-04-28T01:10:40.162564313Z" + description: Install kube-state-metrics to generate and expose cluster-level metrics + digest: d52d15d957bd8add7a1637511b74ebbac7d30104b903f655ba996d703eb6fc37 + home: https://github.com/kubernetes/kube-state-metrics/ + keywords: + - metric + - monitoring + - prometheus + - kubernetes + maintainers: + - email: tariq.ibrahim@mulesoft.com + name: tariq1890 + - email: manuel@rueg.eu + name: mrueg + name: rancher-kube-state-metrics + sources: + - https://github.com/kubernetes/kube-state-metrics/ + urls: + - assets/rancher-kube-state-metrics/rancher-kube-state-metrics-2.13.101-rc00.tgz + version: 2.13.101-rc00 rancher-logging: - annotations: catalog.cattle.io/auto-install: rancher-logging-crd=match @@ -1813,7 +3478,8 @@ entries: apiVersion: v1 appVersion: 3.9.4 created: "2021-04-27T19:45:02.542824882Z" - description: Collects and filter logs using highly configurable CRDs. Powered by Banzai Cloud Logging Operator. + description: Collects and filter logs using highly configurable CRDs. Powered + by Banzai Cloud Logging Operator. digest: 0d6a3d96a1c3ec9d062ffb3c1ddd1196c4ca793e9ca048305aba06dcde1ce667 icon: https://charts.rancher.io/assets/logos/logging.svg keywords: @@ -1824,6 +3490,213 @@ entries: urls: - released/assets/rancher-logging/rancher-logging-3.9.400.tgz version: 3.9.400 + - annotations: + catalog.cattle.io/auto-install: rancher-logging-crd=match + catalog.cattle.io/certified: rancher + catalog.cattle.io/display-name: Logging + catalog.cattle.io/namespace: cattle-logging-system + catalog.cattle.io/provides-gvr: logging.banzaicloud.io.clusterflow/v1beta1 + catalog.cattle.io/release-name: rancher-logging + catalog.cattle.io/ui-component: logging + apiVersion: v1 + appVersion: 3.9.4 + created: "2021-04-28T01:10:40.180785657Z" + description: Collects and filter logs using highly configurable CRDs. Powered + by Banzai Cloud Logging Operator. + digest: 6d69be6c1b81bff5e3a2346cd3887aaf9ea8debd603ac0c0e05557c11d194dbf + icon: https://charts.rancher.io/assets/logos/logging.svg + keywords: + - logging + - monitoring + - security + name: rancher-logging + urls: + - assets/rancher-logging/rancher-logging-3.9.400-rc08.tgz + version: 3.9.400-rc08 + - annotations: + catalog.cattle.io/auto-install: rancher-logging-crd=match + catalog.cattle.io/certified: rancher + catalog.cattle.io/display-name: Logging + catalog.cattle.io/namespace: cattle-logging-system + catalog.cattle.io/provides-gvr: logging.banzaicloud.io.clusterflow/v1beta1 + catalog.cattle.io/release-name: rancher-logging + catalog.cattle.io/ui-component: logging + apiVersion: v1 + appVersion: 3.9.4 + created: "2021-04-28T01:10:40.179487575Z" + description: Collects and filter logs using highly configurable CRDs. Powered + by Banzai Cloud Logging Operator. + digest: 0d02d623c3a7462c7986d19c1a3b89d55c2544e27e1def52c1d9528984e72932 + icon: https://charts.rancher.io/assets/logos/logging.svg + keywords: + - logging + - monitoring + - security + name: rancher-logging + urls: + - assets/rancher-logging/rancher-logging-3.9.400-rc07.tgz + version: 3.9.400-rc07 + - annotations: + catalog.cattle.io/auto-install: rancher-logging-crd=match + catalog.cattle.io/certified: rancher + catalog.cattle.io/display-name: Logging + catalog.cattle.io/namespace: cattle-logging-system + catalog.cattle.io/provides-gvr: logging.banzaicloud.io.clusterflow/v1beta1 + catalog.cattle.io/release-name: rancher-logging + catalog.cattle.io/ui-component: logging + apiVersion: v1 + appVersion: 3.9.4 + created: "2021-04-28T01:10:40.17839599Z" + description: Collects and filter logs using highly configurable CRDs. Powered + by Banzai Cloud Logging Operator. + digest: 69971b88c80c253a78d7697acd86cff0baa4c3f56d0d1fde4cab2e219ceb329c + icon: https://charts.rancher.io/assets/logos/logging.svg + keywords: + - logging + - monitoring + - security + name: rancher-logging + urls: + - assets/rancher-logging/rancher-logging-3.9.400-rc06.tgz + version: 3.9.400-rc06 + - annotations: + catalog.cattle.io/auto-install: rancher-logging-crd=match + catalog.cattle.io/certified: rancher + catalog.cattle.io/display-name: Logging + catalog.cattle.io/namespace: cattle-logging-system + catalog.cattle.io/provides-gvr: logging.banzaicloud.io.clusterflow/v1beta1 + catalog.cattle.io/release-name: rancher-logging + catalog.cattle.io/ui-component: logging + apiVersion: v1 + appVersion: 3.9.4 + created: "2021-04-28T01:10:40.176966111Z" + description: Collects and filter logs using highly configurable CRDs. Powered + by Banzai Cloud Logging Operator. + digest: 6ca0562c09f2113d2db319bf92a7c7dfb01eb9627ff8ba23ae9790221f483c96 + icon: https://charts.rancher.io/assets/logos/logging.svg + keywords: + - logging + - monitoring + - security + name: rancher-logging + urls: + - assets/rancher-logging/rancher-logging-3.9.400-rc05.tgz + version: 3.9.400-rc05 + - annotations: + catalog.cattle.io/auto-install: rancher-logging-crd=match + catalog.cattle.io/certified: rancher + catalog.cattle.io/display-name: Logging + catalog.cattle.io/namespace: cattle-logging-system + catalog.cattle.io/provides-gvr: logging.banzaicloud.io.clusterflow/v1beta1 + catalog.cattle.io/release-name: rancher-logging + catalog.cattle.io/ui-component: logging + apiVersion: v1 + appVersion: 3.9.4 + created: "2021-04-28T01:10:40.175661429Z" + description: Collects and filter logs using highly configurable CRDs. Powered + by Banzai Cloud Logging Operator. + digest: ab0fecb24b3b53694f21ddc81f52e7eb7b6ed8d7a12dda99969ce93b847a4115 + icon: https://charts.rancher.io/assets/logos/logging.svg + keywords: + - logging + - monitoring + - security + name: rancher-logging + urls: + - assets/rancher-logging/rancher-logging-3.9.400-rc04.tgz + version: 3.9.400-rc04 + - annotations: + catalog.cattle.io/auto-install: rancher-logging-crd=match + catalog.cattle.io/certified: rancher + catalog.cattle.io/display-name: Logging + catalog.cattle.io/namespace: cattle-logging-system + catalog.cattle.io/provides-gvr: logging.banzaicloud.io.clusterflow/v1beta1 + catalog.cattle.io/release-name: rancher-logging + catalog.cattle.io/ui-component: logging + apiVersion: v1 + appVersion: 3.9.4 + created: "2021-04-28T01:10:40.174648143Z" + description: Collects and filter logs using highly configurable CRDs. Powered + by Banzai Cloud Logging Operator. + digest: e2149c7fa4a8612e80840aed76e33cfebd0170316b7c050a0cc7cf1ab18acff7 + icon: https://charts.rancher.io/assets/logos/logging.svg + keywords: + - logging + - monitoring + - security + name: rancher-logging + urls: + - assets/rancher-logging/rancher-logging-3.9.400-rc03.tgz + version: 3.9.400-rc03 + - annotations: + catalog.cattle.io/auto-install: rancher-logging-crd=match + catalog.cattle.io/certified: rancher + catalog.cattle.io/display-name: Logging + catalog.cattle.io/namespace: cattle-logging-system + catalog.cattle.io/provides-gvr: logging.banzaicloud.io.clusterflow/v1beta1 + catalog.cattle.io/release-name: rancher-logging + catalog.cattle.io/ui-component: logging + apiVersion: v1 + appVersion: 3.9.4 + created: "2021-04-28T01:10:40.173585158Z" + description: Collects and filter logs using highly configurable CRDs. Powered + by Banzai Cloud Logging Operator. + digest: f4714a3b0503729d9b5e4cda0ebe9efd48dd2d8e23afd1b6cb2365e65dc9c3dd + icon: https://charts.rancher.io/assets/logos/logging.svg + keywords: + - logging + - monitoring + - security + name: rancher-logging + urls: + - assets/rancher-logging/rancher-logging-3.9.400-rc02.tgz + version: 3.9.400-rc02 + - annotations: + catalog.cattle.io/auto-install: rancher-logging-crd=match + catalog.cattle.io/certified: rancher + catalog.cattle.io/display-name: Logging + catalog.cattle.io/namespace: cattle-logging-system + catalog.cattle.io/provides-gvr: logging.banzaicloud.io.clusterflow/v1beta1 + catalog.cattle.io/release-name: rancher-logging + catalog.cattle.io/ui-component: logging + apiVersion: v1 + appVersion: 3.9.4 + created: "2021-04-28T01:10:40.171958781Z" + description: Collects and filter logs using highly configurable CRDs. Powered + by Banzai Cloud Logging Operator. + digest: 30d4923f39a8aa6ace97de46f493bccd7eec8237d6dbdb7aec8068040d8c92e3 + icon: https://charts.rancher.io/assets/logos/logging.svg + keywords: + - logging + - monitoring + - security + name: rancher-logging + urls: + - assets/rancher-logging/rancher-logging-3.9.400-rc01.tgz + version: 3.9.400-rc01 + - annotations: + catalog.cattle.io/auto-install: rancher-logging-crd=match + catalog.cattle.io/certified: rancher + catalog.cattle.io/display-name: Logging + catalog.cattle.io/namespace: cattle-logging-system + catalog.cattle.io/provides-gvr: logging.banzaicloud.io.clusterflow/v1beta1 + catalog.cattle.io/release-name: rancher-logging + catalog.cattle.io/ui-component: logging + apiVersion: v1 + appVersion: 3.9.4 + created: "2021-04-28T01:10:40.170139706Z" + description: Collects and filter logs using highly configurable CRDs. Powered + by Banzai Cloud Logging Operator. + digest: 4ea5580c3e30c9a1243ebcf5461ea1e7ea8d75967539d5f26d46a5b65eaffb0c + icon: https://charts.rancher.io/assets/logos/logging.svg + keywords: + - logging + - monitoring + - security + name: rancher-logging + urls: + - assets/rancher-logging/rancher-logging-3.9.400-rc00.tgz + version: 3.9.400-rc00 - annotations: catalog.cattle.io/auto-install: rancher-logging-crd=match catalog.cattle.io/certified: rancher @@ -1836,7 +3709,8 @@ entries: apiVersion: v1 appVersion: 3.9.0 created: "2021-04-27T19:45:02.541197463Z" - description: Collects and filter logs using highly configurable CRDs. Powered by Banzai Cloud Logging Operator. + description: Collects and filter logs using highly configurable CRDs. Powered + by Banzai Cloud Logging Operator. digest: d4139559652d83e2ddbf69c2c9d2275f6ea6ccc418686f07f4767b3ceba1dc0b icon: https://charts.rancher.io/assets/logos/logging.svg keywords: @@ -1847,6 +3721,78 @@ entries: urls: - released/assets/rancher-logging/rancher-logging-3.9.002.tgz version: 3.9.002 + - annotations: + catalog.cattle.io/auto-install: rancher-logging-crd=match + catalog.cattle.io/certified: rancher + catalog.cattle.io/display-name: Logging + catalog.cattle.io/namespace: cattle-logging-system + catalog.cattle.io/os: linux + catalog.cattle.io/provides-gvr: logging.banzaicloud.io.clusterflow/v1beta1 + catalog.cattle.io/release-name: rancher-logging + catalog.cattle.io/ui-component: logging + apiVersion: v1 + appVersion: 3.9.0 + created: "2021-04-28T01:10:40.168529129Z" + description: Collects and filter logs using highly configurable CRDs. Powered + by Banzai Cloud Logging Operator. + digest: 2dcaa4a7e544526058314d32ce5c63daab046205e760ba6dba2541ccc6028f63 + icon: https://charts.rancher.io/assets/logos/logging.svg + keywords: + - logging + - monitoring + - security + name: rancher-logging + urls: + - assets/rancher-logging/rancher-logging-3.9.002-rc03.tgz + version: 3.9.002-rc03 + - annotations: + catalog.cattle.io/auto-install: rancher-logging-crd=match + catalog.cattle.io/certified: rancher + catalog.cattle.io/display-name: Logging + catalog.cattle.io/namespace: cattle-logging-system + catalog.cattle.io/os: linux + catalog.cattle.io/provides-gvr: logging.banzaicloud.io.clusterflow/v1beta1 + catalog.cattle.io/release-name: rancher-logging + catalog.cattle.io/ui-component: logging + apiVersion: v1 + appVersion: 3.9.0 + created: "2021-04-28T01:10:40.167150148Z" + description: Collects and filter logs using highly configurable CRDs. Powered + by Banzai Cloud Logging Operator. + digest: e8f5837404d3c24d8396b0676f21b100d9f2fde1f1c501786b330648986e9d1c + icon: https://charts.rancher.io/assets/logos/logging.svg + keywords: + - logging + - monitoring + - security + name: rancher-logging + urls: + - assets/rancher-logging/rancher-logging-3.9.002-rc02.tgz + version: 3.9.002-rc02 + - annotations: + catalog.cattle.io/auto-install: rancher-logging-crd=match + catalog.cattle.io/certified: rancher + catalog.cattle.io/display-name: Logging + catalog.cattle.io/namespace: cattle-logging-system + catalog.cattle.io/os: linux + catalog.cattle.io/provides-gvr: logging.banzaicloud.io.clusterflow/v1beta1 + catalog.cattle.io/release-name: rancher-logging + catalog.cattle.io/ui-component: logging + apiVersion: v1 + appVersion: 3.9.0 + created: "2021-04-28T01:10:40.166066864Z" + description: Collects and filter logs using highly configurable CRDs. Powered + by Banzai Cloud Logging Operator. + digest: 3d9759eb846b9e8891bc40e1fc6b6fa9f6f998fc66f8a6736f0255f685cc64f8 + icon: https://charts.rancher.io/assets/logos/logging.svg + keywords: + - logging + - monitoring + - security + name: rancher-logging + urls: + - assets/rancher-logging/rancher-logging-3.9.002-rc01.tgz + version: 3.9.002-rc01 - annotations: catalog.cattle.io/auto-install: rancher-logging-crd=match catalog.cattle.io/certified: rancher @@ -1859,7 +3805,8 @@ entries: apiVersion: v1 appVersion: 3.9.0 created: "2021-04-27T19:45:02.539520944Z" - description: Collects and filter logs using highly configurable CRDs. Powered by Banzai Cloud Logging Operator. + description: Collects and filter logs using highly configurable CRDs. Powered + by Banzai Cloud Logging Operator. digest: 735b87d5d11457057cc35e9f1c01d9e2d694a10ad1338f1a9ff3fcb7eb66924b icon: https://charts.rancher.io/assets/logos/logging.svg keywords: @@ -1870,6 +3817,30 @@ entries: urls: - released/assets/rancher-logging/rancher-logging-3.9.001.tgz version: 3.9.001 + - annotations: + catalog.cattle.io/auto-install: rancher-logging-crd=match + catalog.cattle.io/certified: rancher + catalog.cattle.io/display-name: Logging + catalog.cattle.io/namespace: cattle-logging-system + catalog.cattle.io/os: linux + catalog.cattle.io/provides-gvr: logging.banzaicloud.io.clusterflow/v1beta1 + catalog.cattle.io/release-name: rancher-logging + catalog.cattle.io/ui-component: logging + apiVersion: v1 + appVersion: 3.9.0 + created: "2021-04-28T01:10:40.164998379Z" + description: Collects and filter logs using highly configurable CRDs. Powered + by Banzai Cloud Logging Operator. + digest: d59d5206ab61e47dcf2ebf20dd72c5bb7dc01e21961aad70df7199a61b510998 + icon: https://charts.rancher.io/assets/logos/logging.svg + keywords: + - logging + - monitoring + - security + name: rancher-logging + urls: + - assets/rancher-logging/rancher-logging-3.9.001-rc08.tgz + version: 3.9.001-rc08 - annotations: catalog.cattle.io/auto-install: rancher-logging-crd=match catalog.cattle.io/certified: rancher @@ -1882,7 +3853,8 @@ entries: apiVersion: v1 appVersion: 3.9.0 created: "2021-04-27T19:45:02.536900714Z" - description: Collects and filter logs using highly configurable CRDs. Powered by Banzai Cloud Logging Operator. + description: Collects and filter logs using highly configurable CRDs. Powered + by Banzai Cloud Logging Operator. digest: b6b5e0c627f5594033b3558ff1f2d9c01b1f504a53cbc91b4e75d443ef81a784 icon: https://charts.rancher.io/assets/logos/logging.svg keywords: @@ -1893,6 +3865,30 @@ entries: urls: - released/assets/rancher-logging/rancher-logging-3.9.000.tgz version: 3.9.000 + - annotations: + catalog.cattle.io/auto-install: rancher-logging-crd=match + catalog.cattle.io/certified: rancher + catalog.cattle.io/display-name: Logging + catalog.cattle.io/namespace: cattle-logging-system + catalog.cattle.io/os: linux + catalog.cattle.io/provides-gvr: logging.banzaicloud.io.clusterflow/v1beta1 + catalog.cattle.io/release-name: rancher-logging + catalog.cattle.io/ui-component: logging + apiVersion: v1 + appVersion: 3.9.0 + created: "2021-04-28T01:10:40.163841595Z" + description: Collects and filter logs using highly configurable CRDs. Powered + by Banzai Cloud Logging Operator. + digest: 307f6ddc451bc0a028e7fb1efb1c8bfd2748e7da9cd19b41ea299ad3dac9f56b + icon: https://charts.rancher.io/assets/logos/logging.svg + keywords: + - logging + - monitoring + - security + name: rancher-logging + urls: + - assets/rancher-logging/rancher-logging-3.9.000-rc08.tgz + version: 3.9.000-rc08 - annotations: catalog.cattle.io/auto-install: rancher-logging-crd=match catalog.cattle.io/certified: rancher @@ -1905,7 +3901,8 @@ entries: apiVersion: v1 appVersion: 3.8.2 created: "2021-04-27T19:45:02.535091893Z" - description: Collects and filter logs using highly configurable CRDs. Powered by Banzai Cloud Logging Operator. + description: Collects and filter logs using highly configurable CRDs. Powered + by Banzai Cloud Logging Operator. digest: 7ec4dfb2441832d22651e9263f4bbdcda9e1f064b9e32c70d0fb7c4f6641331a icon: https://charts.rancher.io/assets/logos/logging.svg keywords: @@ -1928,7 +3925,8 @@ entries: apiVersion: v1 appVersion: 3.6.0 created: "2021-04-27T19:45:02.53386648Z" - description: Collects and filter logs using highly configurable CRDs. Powered by Banzai Cloud Logging Operator. + description: Collects and filter logs using highly configurable CRDs. Powered + by Banzai Cloud Logging Operator. digest: a89b3a4327484343c59a88949479c106e40b2587df194e18910cf83099291aa6 icon: https://charts.rancher.io/assets/logos/logging.svg keywords: @@ -1950,7 +3948,8 @@ entries: apiVersion: v1 appVersion: 3.6.0 created: "2021-04-27T19:45:02.532623265Z" - description: Collects and filter logs using highly configurable CRDs. Powered by Banzai Cloud Logging Operator. + description: Collects and filter logs using highly configurable CRDs. Powered + by Banzai Cloud Logging Operator. digest: 3f3cd871fe5c6708b3fcdcd7a9f6e87ee41eb8f5505bdaed3f01791ac2bf7faf icon: https://charts.rancher.io/assets/logos/logging.svg keywords: @@ -1976,6 +3975,132 @@ entries: urls: - released/assets/rancher-logging/rancher-logging-crd-3.9.400.tgz version: 3.9.400 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: cattle-logging-system + catalog.cattle.io/release-name: rancher-logging-crd + apiVersion: v1 + created: "2021-04-28T01:10:40.207789078Z" + description: Installs the CRDs for rancher-logging. + digest: ace69e2388630601298c0e1d800d51bbf09bce621232e036d0dd507c112600e4 + name: rancher-logging-crd + type: application + urls: + - assets/rancher-logging/rancher-logging-crd-3.9.400-rc08.tgz + version: 3.9.400-rc08 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: cattle-logging-system + catalog.cattle.io/release-name: rancher-logging-crd + apiVersion: v1 + created: "2021-04-28T01:10:40.205906604Z" + description: Installs the CRDs for rancher-logging. + digest: 06fca51af0e3012ce69228125e0cfe45a02ed66db2feedc87ab4e179cb6eba75 + name: rancher-logging-crd + type: application + urls: + - assets/rancher-logging/rancher-logging-crd-3.9.400-rc07.tgz + version: 3.9.400-rc07 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: cattle-logging-system + catalog.cattle.io/release-name: rancher-logging-crd + apiVersion: v1 + created: "2021-04-28T01:10:40.203581137Z" + description: Installs the CRDs for rancher-logging. + digest: c7f98a25424982983b4fb9a8c23ab8a44fac51934b6d5fdede6a65bf6813f9a4 + name: rancher-logging-crd + type: application + urls: + - assets/rancher-logging/rancher-logging-crd-3.9.400-rc06.tgz + version: 3.9.400-rc06 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: cattle-logging-system + catalog.cattle.io/release-name: rancher-logging-crd + apiVersion: v1 + created: "2021-04-28T01:10:40.201962159Z" + description: Installs the CRDs for rancher-logging. + digest: d21fc9a95704f392812b58c907a9bad507ab002c1baa00864e653650a563a231 + name: rancher-logging-crd + type: application + urls: + - assets/rancher-logging/rancher-logging-crd-3.9.400-rc05.tgz + version: 3.9.400-rc05 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: cattle-logging-system + catalog.cattle.io/release-name: rancher-logging-crd + apiVersion: v1 + created: "2021-04-28T01:10:40.200031387Z" + description: Installs the CRDs for rancher-logging. + digest: 2394c454671389d697576f38532cde477f1f2409c3000245da02a68616d45c84 + name: rancher-logging-crd + type: application + urls: + - assets/rancher-logging/rancher-logging-crd-3.9.400-rc04.tgz + version: 3.9.400-rc04 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: cattle-logging-system + catalog.cattle.io/release-name: rancher-logging-crd + apiVersion: v1 + created: "2021-04-28T01:10:40.197873817Z" + description: Installs the CRDs for rancher-logging. + digest: b184b7cd339799440349dec93f8068fb54af108b386c462032ea2a23f3ea6eb6 + name: rancher-logging-crd + type: application + urls: + - assets/rancher-logging/rancher-logging-crd-3.9.400-rc03.tgz + version: 3.9.400-rc03 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: cattle-logging-system + catalog.cattle.io/release-name: rancher-logging-crd + apiVersion: v1 + created: "2021-04-28T01:10:40.195714247Z" + description: Installs the CRDs for rancher-logging. + digest: 51b7a28f0e9b297141bba104d0ca6c9766908e8d11bbcd6b829b894057bff970 + name: rancher-logging-crd + type: application + urls: + - assets/rancher-logging/rancher-logging-crd-3.9.400-rc02.tgz + version: 3.9.400-rc02 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: cattle-logging-system + catalog.cattle.io/release-name: rancher-logging-crd + apiVersion: v1 + created: "2021-04-28T01:10:40.193758475Z" + description: Installs the CRDs for rancher-logging. + digest: 05bcc4fdcf49baf692f5cda021e0482c11392c88adff434087142a14f2af780d + name: rancher-logging-crd + type: application + urls: + - assets/rancher-logging/rancher-logging-crd-3.9.400-rc01.tgz + version: 3.9.400-rc01 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: cattle-logging-system + catalog.cattle.io/release-name: rancher-logging-crd + apiVersion: v1 + created: "2021-04-28T01:10:40.191741403Z" + description: Installs the CRDs for rancher-logging. + digest: c05caeebb83f8b92a359a4824a5d0b4432060db03f3aef065536d527cac0963d + name: rancher-logging-crd + type: application + urls: + - assets/rancher-logging/rancher-logging-crd-3.9.400-rc00.tgz + version: 3.9.400-rc00 - annotations: catalog.cattle.io/certified: rancher catalog.cattle.io/hidden: "true" @@ -1990,6 +4115,48 @@ entries: urls: - released/assets/rancher-logging/rancher-logging-crd-3.9.002.tgz version: 3.9.002 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: cattle-logging-system + catalog.cattle.io/release-name: rancher-logging-crd + apiVersion: v1 + created: "2021-04-28T01:10:40.189008041Z" + description: Installs the CRDs for rancher-logging. + digest: 79a92ba93a3e12ab21904a2fbac1af5e02bb383bb0d0870098823ca3a3906d48 + name: rancher-logging-crd + type: application + urls: + - assets/rancher-logging/rancher-logging-crd-3.9.002-rc03.tgz + version: 3.9.002-rc03 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: cattle-logging-system + catalog.cattle.io/release-name: rancher-logging-crd + apiVersion: v1 + created: "2021-04-28T01:10:40.187212967Z" + description: Installs the CRDs for rancher-logging. + digest: 07a532d77f5dd9659b180a0be6e69d4503a0604be096d60f71f9df3d0d9061fe + name: rancher-logging-crd + type: application + urls: + - assets/rancher-logging/rancher-logging-crd-3.9.002-rc02.tgz + version: 3.9.002-rc02 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: cattle-logging-system + catalog.cattle.io/release-name: rancher-logging-crd + apiVersion: v1 + created: "2021-04-28T01:10:40.185979684Z" + description: Installs the CRDs for rancher-logging. + digest: 458d13cf6ad6f90488dc73a6a96744e8a7b32b15cef8d01647b8eb9e848127d7 + name: rancher-logging-crd + type: application + urls: + - assets/rancher-logging/rancher-logging-crd-3.9.002-rc01.tgz + version: 3.9.002-rc01 - annotations: catalog.cattle.io/certified: rancher catalog.cattle.io/hidden: "true" @@ -2004,6 +4171,20 @@ entries: urls: - released/assets/rancher-logging/rancher-logging-crd-3.9.001.tgz version: 3.9.001 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: cattle-logging-system + catalog.cattle.io/release-name: rancher-logging-crd + apiVersion: v1 + created: "2021-04-28T01:10:40.184237908Z" + description: Installs the CRDs for rancher-logging. + digest: 41510a9536773fea4e55775d5952bac7244b2980c49def8fbaf87d40e2455e30 + name: rancher-logging-crd + type: application + urls: + - assets/rancher-logging/rancher-logging-crd-3.9.001-rc08.tgz + version: 3.9.001-rc08 - annotations: catalog.cattle.io/certified: rancher catalog.cattle.io/hidden: "true" @@ -2018,6 +4199,20 @@ entries: urls: - released/assets/rancher-logging/rancher-logging-crd-3.9.000.tgz version: 3.9.000 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: cattle-logging-system + catalog.cattle.io/release-name: rancher-logging-crd + apiVersion: v1 + created: "2021-04-28T01:10:40.182060839Z" + description: Installs the CRDs for rancher-logging. + digest: 6dccf7948ddce0eb40975f667ede6ec5666a2751d02c63a44912930dcef2d02c + name: rancher-logging-crd + type: application + urls: + - assets/rancher-logging/rancher-logging-crd-3.9.000-rc08.tgz + version: 3.9.000-rc08 - annotations: catalog.cattle.io/certified: rancher catalog.cattle.io/hidden: "true" @@ -2135,7 +4330,9 @@ entries: - condition: global.cattle.windows.enabled name: windowsExporter repository: file://./charts/windowsExporter - description: Collects several related Helm charts, Grafana dashboards, and Prometheus rules combined with documentation and scripts to provide easy to operate end-to-end Kubernetes cluster monitoring with Prometheus using the Prometheus Operator. + description: Collects several related Helm charts, Grafana dashboards, and Prometheus + rules combined with documentation and scripts to provide easy to operate end-to-end + Kubernetes cluster monitoring with Prometheus using the Prometheus Operator. digest: e7e365325dfab21f2eec84919109bb04f9bc9fcfc28e568fd9ced40f57517f4e home: https://github.com/prometheus-operator/kube-prometheus icon: https://raw.githubusercontent.com/prometheus/prometheus.github.io/master/assets/prometheus_logo-cb55bb5c346.png @@ -2166,6 +4363,1290 @@ entries: urls: - released/assets/rancher-monitoring/rancher-monitoring-14.5.100.tgz version: 14.5.100 + - annotations: + artifacthub.io/links: | + - name: Chart Source + url: https://github.com/prometheus-community/helm-charts + - name: Upstream Project + url: https://github.com/prometheus-operator/kube-prometheus + artifacthub.io/operator: "true" + catalog.cattle.io/auto-install: rancher-monitoring-crd=match + catalog.cattle.io/certified: rancher + catalog.cattle.io/display-name: Monitoring + catalog.cattle.io/namespace: cattle-monitoring-system + catalog.cattle.io/provides-gvr: monitoring.coreos.com.prometheus/v1 + catalog.cattle.io/release-name: rancher-monitoring + catalog.cattle.io/requests-cpu: 4500m + catalog.cattle.io/requests-memory: 4000Mi + catalog.cattle.io/ui-component: monitoring + apiVersion: v2 + appVersion: 0.46.0 + created: "2021-04-28T01:10:40.53160823Z" + dependencies: + - condition: grafana.enabled + name: grafana + repository: file://./charts/grafana + - condition: k3sServer.enabled + name: k3sServer + repository: file://./charts/k3sServer + - condition: kubeStateMetrics.enabled + name: kube-state-metrics + repository: file://./charts/kube-state-metrics + - condition: kubeAdmControllerManager.enabled + name: kubeAdmControllerManager + repository: file://./charts/kubeAdmControllerManager + - condition: kubeAdmEtcd.enabled + name: kubeAdmEtcd + repository: file://./charts/kubeAdmEtcd + - condition: kubeAdmProxy.enabled + name: kubeAdmProxy + repository: file://./charts/kubeAdmProxy + - condition: kubeAdmScheduler.enabled + name: kubeAdmScheduler + repository: file://./charts/kubeAdmScheduler + - condition: prometheus-adapter.enabled + name: prometheus-adapter + repository: file://./charts/prometheus-adapter + - condition: nodeExporter.enabled + name: prometheus-node-exporter + repository: file://./charts/prometheus-node-exporter + - condition: rke2ControllerManager.enabled + name: rke2ControllerManager + repository: file://./charts/rke2ControllerManager + - condition: rke2Etcd.enabled + name: rke2Etcd + repository: file://./charts/rke2Etcd + - condition: rke2Proxy.enabled + name: rke2Proxy + repository: file://./charts/rke2Proxy + - condition: rke2Scheduler.enabled + name: rke2Scheduler + repository: file://./charts/rke2Scheduler + - condition: rkeControllerManager.enabled + name: rkeControllerManager + repository: file://./charts/rkeControllerManager + - condition: rkeEtcd.enabled + name: rkeEtcd + repository: file://./charts/rkeEtcd + - condition: rkeProxy.enabled + name: rkeProxy + repository: file://./charts/rkeProxy + - condition: rkeScheduler.enabled + name: rkeScheduler + repository: file://./charts/rkeScheduler + - condition: global.cattle.windows.enabled + name: windowsExporter + repository: file://./charts/windowsExporter + description: Collects several related Helm charts, Grafana dashboards, and Prometheus + rules combined with documentation and scripts to provide easy to operate end-to-end + Kubernetes cluster monitoring with Prometheus using the Prometheus Operator. + digest: e299263c520bedcd3820b3f5c9a09ffe2c528e2d891f64e912c033778d7ce268 + home: https://github.com/prometheus-operator/kube-prometheus + icon: https://raw.githubusercontent.com/prometheus/prometheus.github.io/master/assets/prometheus_logo-cb55bb5c346.png + keywords: + - operator + - prometheus + - kube-prometheus + - monitoring + kubeVersion: '>=1.16.0-0' + maintainers: + - name: vsliouniaev + - name: bismarck + - email: gianrubio@gmail.com + name: gianrubio + - email: github.gkarthiks@gmail.com + name: gkarthiks + - email: scott@r6by.com + name: scottrigby + - email: miroslav.hadzhiev@gmail.com + name: Xtigyro + - email: arvind.iyengar@suse.com + name: Arvind + name: rancher-monitoring + sources: + - https://github.com/prometheus-community/helm-charts + - https://github.com/prometheus-operator/kube-prometheus + type: application + urls: + - assets/rancher-monitoring/rancher-monitoring-14.5.100-rc11.tgz + version: 14.5.100-rc11 + - annotations: + artifacthub.io/links: | + - name: Chart Source + url: https://github.com/prometheus-community/helm-charts + - name: Upstream Project + url: https://github.com/prometheus-operator/kube-prometheus + artifacthub.io/operator: "true" + catalog.cattle.io/auto-install: rancher-monitoring-crd=match + catalog.cattle.io/certified: rancher + catalog.cattle.io/display-name: Monitoring + catalog.cattle.io/namespace: cattle-monitoring-system + catalog.cattle.io/provides-gvr: monitoring.coreos.com.prometheus/v1 + catalog.cattle.io/release-name: rancher-monitoring + catalog.cattle.io/requests-cpu: 4500m + catalog.cattle.io/requests-memory: 4000Mi + catalog.cattle.io/ui-component: monitoring + apiVersion: v2 + appVersion: 0.46.0 + created: "2021-04-28T01:10:40.507335171Z" + dependencies: + - condition: grafana.enabled + name: grafana + repository: file://./charts/grafana + - condition: k3sServer.enabled + name: k3sServer + repository: file://./charts/k3sServer + - condition: kubeStateMetrics.enabled + name: kube-state-metrics + repository: file://./charts/kube-state-metrics + - condition: kubeAdmControllerManager.enabled + name: kubeAdmControllerManager + repository: file://./charts/kubeAdmControllerManager + - condition: kubeAdmEtcd.enabled + name: kubeAdmEtcd + repository: file://./charts/kubeAdmEtcd + - condition: kubeAdmProxy.enabled + name: kubeAdmProxy + repository: file://./charts/kubeAdmProxy + - condition: kubeAdmScheduler.enabled + name: kubeAdmScheduler + repository: file://./charts/kubeAdmScheduler + - condition: prometheus-adapter.enabled + name: prometheus-adapter + repository: file://./charts/prometheus-adapter + - condition: nodeExporter.enabled + name: prometheus-node-exporter + repository: file://./charts/prometheus-node-exporter + - condition: rke2ControllerManager.enabled + name: rke2ControllerManager + repository: file://./charts/rke2ControllerManager + - condition: rke2Etcd.enabled + name: rke2Etcd + repository: file://./charts/rke2Etcd + - condition: rke2Proxy.enabled + name: rke2Proxy + repository: file://./charts/rke2Proxy + - condition: rke2Scheduler.enabled + name: rke2Scheduler + repository: file://./charts/rke2Scheduler + - condition: rkeControllerManager.enabled + name: rkeControllerManager + repository: file://./charts/rkeControllerManager + - condition: rkeEtcd.enabled + name: rkeEtcd + repository: file://./charts/rkeEtcd + - condition: rkeProxy.enabled + name: rkeProxy + repository: file://./charts/rkeProxy + - condition: rkeScheduler.enabled + name: rkeScheduler + repository: file://./charts/rkeScheduler + - condition: global.cattle.windows.enabled + name: windowsExporter + repository: file://./charts/windowsExporter + description: Collects several related Helm charts, Grafana dashboards, and Prometheus + rules combined with documentation and scripts to provide easy to operate end-to-end + Kubernetes cluster monitoring with Prometheus using the Prometheus Operator. + digest: cd0ea5f5849fb6ad6160c3b560b629908856376c17cfdeb52863459dc0785a4f + home: https://github.com/prometheus-operator/kube-prometheus + icon: https://raw.githubusercontent.com/prometheus/prometheus.github.io/master/assets/prometheus_logo-cb55bb5c346.png + keywords: + - operator + - prometheus + - kube-prometheus + - monitoring + kubeVersion: '>=1.16.0-0' + maintainers: + - name: vsliouniaev + - name: bismarck + - email: gianrubio@gmail.com + name: gianrubio + - email: github.gkarthiks@gmail.com + name: gkarthiks + - email: scott@r6by.com + name: scottrigby + - email: miroslav.hadzhiev@gmail.com + name: Xtigyro + - email: arvind.iyengar@suse.com + name: Arvind + name: rancher-monitoring + sources: + - https://github.com/prometheus-community/helm-charts + - https://github.com/prometheus-operator/kube-prometheus + type: application + urls: + - assets/rancher-monitoring/rancher-monitoring-14.5.100-rc10.tgz + version: 14.5.100-rc10 + - annotations: + artifacthub.io/links: | + - name: Chart Source + url: https://github.com/prometheus-community/helm-charts + - name: Upstream Project + url: https://github.com/prometheus-operator/kube-prometheus + artifacthub.io/operator: "true" + catalog.cattle.io/auto-install: rancher-monitoring-crd=match + catalog.cattle.io/certified: rancher + catalog.cattle.io/display-name: Monitoring + catalog.cattle.io/namespace: cattle-monitoring-system + catalog.cattle.io/provides-gvr: monitoring.coreos.com.prometheus/v1 + catalog.cattle.io/release-name: rancher-monitoring + catalog.cattle.io/requests-cpu: 4500m + catalog.cattle.io/requests-memory: 4000Mi + catalog.cattle.io/ui-component: monitoring + apiVersion: v2 + appVersion: 0.46.0 + created: "2021-04-28T01:10:40.479898256Z" + dependencies: + - condition: grafana.enabled + name: grafana + repository: file://./charts/grafana + - condition: k3sServer.enabled + name: k3sServer + repository: file://./charts/k3sServer + - condition: kubeStateMetrics.enabled + name: kube-state-metrics + repository: file://./charts/kube-state-metrics + - condition: kubeAdmControllerManager.enabled + name: kubeAdmControllerManager + repository: file://./charts/kubeAdmControllerManager + - condition: kubeAdmEtcd.enabled + name: kubeAdmEtcd + repository: file://./charts/kubeAdmEtcd + - condition: kubeAdmProxy.enabled + name: kubeAdmProxy + repository: file://./charts/kubeAdmProxy + - condition: kubeAdmScheduler.enabled + name: kubeAdmScheduler + repository: file://./charts/kubeAdmScheduler + - condition: prometheus-adapter.enabled + name: prometheus-adapter + repository: file://./charts/prometheus-adapter + - condition: nodeExporter.enabled + name: prometheus-node-exporter + repository: file://./charts/prometheus-node-exporter + - condition: rke2ControllerManager.enabled + name: rke2ControllerManager + repository: file://./charts/rke2ControllerManager + - condition: rke2Etcd.enabled + name: rke2Etcd + repository: file://./charts/rke2Etcd + - condition: rke2Proxy.enabled + name: rke2Proxy + repository: file://./charts/rke2Proxy + - condition: rke2Scheduler.enabled + name: rke2Scheduler + repository: file://./charts/rke2Scheduler + - condition: rkeControllerManager.enabled + name: rkeControllerManager + repository: file://./charts/rkeControllerManager + - condition: rkeEtcd.enabled + name: rkeEtcd + repository: file://./charts/rkeEtcd + - condition: rkeProxy.enabled + name: rkeProxy + repository: file://./charts/rkeProxy + - condition: rkeScheduler.enabled + name: rkeScheduler + repository: file://./charts/rkeScheduler + - condition: global.cattle.windows.enabled + name: windowsExporter + repository: file://./charts/windowsExporter + description: Collects several related Helm charts, Grafana dashboards, and Prometheus + rules combined with documentation and scripts to provide easy to operate end-to-end + Kubernetes cluster monitoring with Prometheus using the Prometheus Operator. + digest: 2426448c863488043fd92d86fa08714cbf58c3ec8b1de05bb8346f88a50c05ee + home: https://github.com/prometheus-operator/kube-prometheus + icon: https://raw.githubusercontent.com/prometheus/prometheus.github.io/master/assets/prometheus_logo-cb55bb5c346.png + keywords: + - operator + - prometheus + - kube-prometheus + - monitoring + kubeVersion: '>=1.16.0-0' + maintainers: + - name: vsliouniaev + - name: bismarck + - email: gianrubio@gmail.com + name: gianrubio + - email: github.gkarthiks@gmail.com + name: gkarthiks + - email: scott@r6by.com + name: scottrigby + - email: miroslav.hadzhiev@gmail.com + name: Xtigyro + - email: arvind.iyengar@suse.com + name: Arvind + name: rancher-monitoring + sources: + - https://github.com/prometheus-community/helm-charts + - https://github.com/prometheus-operator/kube-prometheus + type: application + urls: + - assets/rancher-monitoring/rancher-monitoring-14.5.100-rc09.tgz + version: 14.5.100-rc09 + - annotations: + artifacthub.io/links: | + - name: Chart Source + url: https://github.com/prometheus-community/helm-charts + - name: Upstream Project + url: https://github.com/prometheus-operator/kube-prometheus + artifacthub.io/operator: "true" + catalog.cattle.io/auto-install: rancher-monitoring-crd=match + catalog.cattle.io/certified: rancher + catalog.cattle.io/display-name: Monitoring + catalog.cattle.io/namespace: cattle-monitoring-system + catalog.cattle.io/provides-gvr: monitoring.coreos.com.prometheus/v1 + catalog.cattle.io/release-name: rancher-monitoring + catalog.cattle.io/requests-cpu: 4500m + catalog.cattle.io/requests-memory: 4000Mi + catalog.cattle.io/ui-component: monitoring + apiVersion: v2 + appVersion: 0.46.0 + created: "2021-04-28T01:10:40.45394892Z" + dependencies: + - condition: grafana.enabled + name: grafana + repository: file://./charts/grafana + - condition: k3sServer.enabled + name: k3sServer + repository: file://./charts/k3sServer + - condition: kubeStateMetrics.enabled + name: kube-state-metrics + repository: file://./charts/kube-state-metrics + - condition: kubeAdmControllerManager.enabled + name: kubeAdmControllerManager + repository: file://./charts/kubeAdmControllerManager + - condition: kubeAdmEtcd.enabled + name: kubeAdmEtcd + repository: file://./charts/kubeAdmEtcd + - condition: kubeAdmProxy.enabled + name: kubeAdmProxy + repository: file://./charts/kubeAdmProxy + - condition: kubeAdmScheduler.enabled + name: kubeAdmScheduler + repository: file://./charts/kubeAdmScheduler + - condition: prometheus-adapter.enabled + name: prometheus-adapter + repository: file://./charts/prometheus-adapter + - condition: nodeExporter.enabled + name: prometheus-node-exporter + repository: file://./charts/prometheus-node-exporter + - condition: rke2ControllerManager.enabled + name: rke2ControllerManager + repository: file://./charts/rke2ControllerManager + - condition: rke2Etcd.enabled + name: rke2Etcd + repository: file://./charts/rke2Etcd + - condition: rke2Proxy.enabled + name: rke2Proxy + repository: file://./charts/rke2Proxy + - condition: rke2Scheduler.enabled + name: rke2Scheduler + repository: file://./charts/rke2Scheduler + - condition: rkeControllerManager.enabled + name: rkeControllerManager + repository: file://./charts/rkeControllerManager + - condition: rkeEtcd.enabled + name: rkeEtcd + repository: file://./charts/rkeEtcd + - condition: rkeProxy.enabled + name: rkeProxy + repository: file://./charts/rkeProxy + - condition: rkeScheduler.enabled + name: rkeScheduler + repository: file://./charts/rkeScheduler + - condition: global.cattle.windows.enabled + name: windowsExporter + repository: file://./charts/windowsExporter + description: Collects several related Helm charts, Grafana dashboards, and Prometheus + rules combined with documentation and scripts to provide easy to operate end-to-end + Kubernetes cluster monitoring with Prometheus using the Prometheus Operator. + digest: 00c5a9ad1ace7750417ed21deb6ba1dca497987d7818ad749414831da9b4420b + home: https://github.com/prometheus-operator/kube-prometheus + icon: https://raw.githubusercontent.com/prometheus/prometheus.github.io/master/assets/prometheus_logo-cb55bb5c346.png + keywords: + - operator + - prometheus + - kube-prometheus + - monitoring + kubeVersion: '>=1.16.0-0' + maintainers: + - name: vsliouniaev + - name: bismarck + - email: gianrubio@gmail.com + name: gianrubio + - email: github.gkarthiks@gmail.com + name: gkarthiks + - email: scott@r6by.com + name: scottrigby + - email: miroslav.hadzhiev@gmail.com + name: Xtigyro + - email: arvind.iyengar@suse.com + name: Arvind + name: rancher-monitoring + sources: + - https://github.com/prometheus-community/helm-charts + - https://github.com/prometheus-operator/kube-prometheus + type: application + urls: + - assets/rancher-monitoring/rancher-monitoring-14.5.100-rc08.tgz + version: 14.5.100-rc08 + - annotations: + artifacthub.io/links: | + - name: Chart Source + url: https://github.com/prometheus-community/helm-charts + - name: Upstream Project + url: https://github.com/prometheus-operator/kube-prometheus + artifacthub.io/operator: "true" + catalog.cattle.io/auto-install: rancher-monitoring-crd=match + catalog.cattle.io/certified: rancher + catalog.cattle.io/display-name: Monitoring + catalog.cattle.io/namespace: cattle-monitoring-system + catalog.cattle.io/provides-gvr: monitoring.coreos.com.prometheus/v1 + catalog.cattle.io/release-name: rancher-monitoring + catalog.cattle.io/requests-cpu: 4500m + catalog.cattle.io/requests-memory: 4000Mi + catalog.cattle.io/ui-component: monitoring + apiVersion: v2 + appVersion: 0.46.0 + created: "2021-04-28T01:10:40.426572105Z" + dependencies: + - condition: grafana.enabled + name: grafana + repository: file://./charts/grafana + - condition: k3sServer.enabled + name: k3sServer + repository: file://./charts/k3sServer + - condition: kubeStateMetrics.enabled + name: kube-state-metrics + repository: file://./charts/kube-state-metrics + - condition: kubeAdmControllerManager.enabled + name: kubeAdmControllerManager + repository: file://./charts/kubeAdmControllerManager + - condition: kubeAdmEtcd.enabled + name: kubeAdmEtcd + repository: file://./charts/kubeAdmEtcd + - condition: kubeAdmProxy.enabled + name: kubeAdmProxy + repository: file://./charts/kubeAdmProxy + - condition: kubeAdmScheduler.enabled + name: kubeAdmScheduler + repository: file://./charts/kubeAdmScheduler + - condition: prometheus-adapter.enabled + name: prometheus-adapter + repository: file://./charts/prometheus-adapter + - condition: nodeExporter.enabled + name: prometheus-node-exporter + repository: file://./charts/prometheus-node-exporter + - condition: rke2ControllerManager.enabled + name: rke2ControllerManager + repository: file://./charts/rke2ControllerManager + - condition: rke2Etcd.enabled + name: rke2Etcd + repository: file://./charts/rke2Etcd + - condition: rke2Proxy.enabled + name: rke2Proxy + repository: file://./charts/rke2Proxy + - condition: rke2Scheduler.enabled + name: rke2Scheduler + repository: file://./charts/rke2Scheduler + - condition: rkeControllerManager.enabled + name: rkeControllerManager + repository: file://./charts/rkeControllerManager + - condition: rkeEtcd.enabled + name: rkeEtcd + repository: file://./charts/rkeEtcd + - condition: rkeProxy.enabled + name: rkeProxy + repository: file://./charts/rkeProxy + - condition: rkeScheduler.enabled + name: rkeScheduler + repository: file://./charts/rkeScheduler + - condition: global.cattle.windows.enabled + name: windowsExporter + repository: file://./charts/windowsExporter + description: Collects several related Helm charts, Grafana dashboards, and Prometheus + rules combined with documentation and scripts to provide easy to operate end-to-end + Kubernetes cluster monitoring with Prometheus using the Prometheus Operator. + digest: c582850ebf328511230bb5e54e67637b1a67d8f26b60e72c68798cc789ce8742 + home: https://github.com/prometheus-operator/kube-prometheus + icon: https://raw.githubusercontent.com/prometheus/prometheus.github.io/master/assets/prometheus_logo-cb55bb5c346.png + keywords: + - operator + - prometheus + - kube-prometheus + - monitoring + kubeVersion: '>=1.16.0-0' + maintainers: + - name: vsliouniaev + - name: bismarck + - email: gianrubio@gmail.com + name: gianrubio + - email: github.gkarthiks@gmail.com + name: gkarthiks + - email: scott@r6by.com + name: scottrigby + - email: miroslav.hadzhiev@gmail.com + name: Xtigyro + - email: arvind.iyengar@suse.com + name: Arvind + name: rancher-monitoring + sources: + - https://github.com/prometheus-community/helm-charts + - https://github.com/prometheus-operator/kube-prometheus + type: application + urls: + - assets/rancher-monitoring/rancher-monitoring-14.5.100-rc07.tgz + version: 14.5.100-rc07 + - annotations: + artifacthub.io/links: | + - name: Chart Source + url: https://github.com/prometheus-community/helm-charts + - name: Upstream Project + url: https://github.com/prometheus-operator/kube-prometheus + artifacthub.io/operator: "true" + catalog.cattle.io/auto-install: rancher-monitoring-crd=match + catalog.cattle.io/certified: rancher + catalog.cattle.io/display-name: Monitoring + catalog.cattle.io/namespace: cattle-monitoring-system + catalog.cattle.io/provides-gvr: monitoring.coreos.com.prometheus/v1 + catalog.cattle.io/release-name: rancher-monitoring + catalog.cattle.io/requests-cpu: 4500m + catalog.cattle.io/requests-memory: 4000Mi + catalog.cattle.io/ui-component: monitoring + apiVersion: v2 + appVersion: 0.46.0 + created: "2021-04-28T01:10:40.400177876Z" + dependencies: + - condition: grafana.enabled + name: grafana + repository: file://./charts/grafana + - condition: k3sServer.enabled + name: k3sServer + repository: file://./charts/k3sServer + - condition: kubeStateMetrics.enabled + name: kube-state-metrics + repository: file://./charts/kube-state-metrics + - condition: kubeAdmControllerManager.enabled + name: kubeAdmControllerManager + repository: file://./charts/kubeAdmControllerManager + - condition: kubeAdmEtcd.enabled + name: kubeAdmEtcd + repository: file://./charts/kubeAdmEtcd + - condition: kubeAdmProxy.enabled + name: kubeAdmProxy + repository: file://./charts/kubeAdmProxy + - condition: kubeAdmScheduler.enabled + name: kubeAdmScheduler + repository: file://./charts/kubeAdmScheduler + - condition: prometheus-adapter.enabled + name: prometheus-adapter + repository: file://./charts/prometheus-adapter + - condition: nodeExporter.enabled + name: prometheus-node-exporter + repository: file://./charts/prometheus-node-exporter + - condition: rke2ControllerManager.enabled + name: rke2ControllerManager + repository: file://./charts/rke2ControllerManager + - condition: rke2Etcd.enabled + name: rke2Etcd + repository: file://./charts/rke2Etcd + - condition: rke2Proxy.enabled + name: rke2Proxy + repository: file://./charts/rke2Proxy + - condition: rke2Scheduler.enabled + name: rke2Scheduler + repository: file://./charts/rke2Scheduler + - condition: rkeControllerManager.enabled + name: rkeControllerManager + repository: file://./charts/rkeControllerManager + - condition: rkeEtcd.enabled + name: rkeEtcd + repository: file://./charts/rkeEtcd + - condition: rkeProxy.enabled + name: rkeProxy + repository: file://./charts/rkeProxy + - condition: rkeScheduler.enabled + name: rkeScheduler + repository: file://./charts/rkeScheduler + - condition: global.cattle.windows.enabled + name: windowsExporter + repository: file://./charts/windowsExporter + description: Collects several related Helm charts, Grafana dashboards, and Prometheus + rules combined with documentation and scripts to provide easy to operate end-to-end + Kubernetes cluster monitoring with Prometheus using the Prometheus Operator. + digest: d83eace264cab91cb4c126a2ce523e683655a536be09e7eba1cce15dd3403b43 + home: https://github.com/prometheus-operator/kube-prometheus + icon: https://raw.githubusercontent.com/prometheus/prometheus.github.io/master/assets/prometheus_logo-cb55bb5c346.png + keywords: + - operator + - prometheus + - kube-prometheus + - monitoring + kubeVersion: '>=1.16.0-0' + maintainers: + - name: vsliouniaev + - name: bismarck + - email: gianrubio@gmail.com + name: gianrubio + - email: github.gkarthiks@gmail.com + name: gkarthiks + - email: scott@r6by.com + name: scottrigby + - email: miroslav.hadzhiev@gmail.com + name: Xtigyro + - email: arvind.iyengar@suse.com + name: Arvind + name: rancher-monitoring + sources: + - https://github.com/prometheus-community/helm-charts + - https://github.com/prometheus-operator/kube-prometheus + type: application + urls: + - assets/rancher-monitoring/rancher-monitoring-14.5.100-rc06.tgz + version: 14.5.100-rc06 + - annotations: + artifacthub.io/links: | + - name: Chart Source + url: https://github.com/prometheus-community/helm-charts + - name: Upstream Project + url: https://github.com/prometheus-operator/kube-prometheus + artifacthub.io/operator: "true" + catalog.cattle.io/auto-install: rancher-monitoring-crd=match + catalog.cattle.io/certified: rancher + catalog.cattle.io/display-name: Monitoring + catalog.cattle.io/namespace: cattle-monitoring-system + catalog.cattle.io/provides-gvr: monitoring.coreos.com.prometheus/v1 + catalog.cattle.io/release-name: rancher-monitoring + catalog.cattle.io/requests-cpu: 4500m + catalog.cattle.io/requests-memory: 4000Mi + catalog.cattle.io/ui-component: monitoring + apiVersion: v2 + appVersion: 0.46.0 + created: "2021-04-28T01:10:40.374475937Z" + dependencies: + - condition: grafana.enabled + name: grafana + repository: file://./charts/grafana + - condition: k3sServer.enabled + name: k3sServer + repository: file://./charts/k3sServer + - condition: kubeStateMetrics.enabled + name: kube-state-metrics + repository: file://./charts/kube-state-metrics + - condition: kubeAdmControllerManager.enabled + name: kubeAdmControllerManager + repository: file://./charts/kubeAdmControllerManager + - condition: kubeAdmEtcd.enabled + name: kubeAdmEtcd + repository: file://./charts/kubeAdmEtcd + - condition: kubeAdmProxy.enabled + name: kubeAdmProxy + repository: file://./charts/kubeAdmProxy + - condition: kubeAdmScheduler.enabled + name: kubeAdmScheduler + repository: file://./charts/kubeAdmScheduler + - condition: prometheus-adapter.enabled + name: prometheus-adapter + repository: file://./charts/prometheus-adapter + - condition: nodeExporter.enabled + name: prometheus-node-exporter + repository: file://./charts/prometheus-node-exporter + - condition: rke2ControllerManager.enabled + name: rke2ControllerManager + repository: file://./charts/rke2ControllerManager + - condition: rke2Etcd.enabled + name: rke2Etcd + repository: file://./charts/rke2Etcd + - condition: rke2Proxy.enabled + name: rke2Proxy + repository: file://./charts/rke2Proxy + - condition: rke2Scheduler.enabled + name: rke2Scheduler + repository: file://./charts/rke2Scheduler + - condition: rkeControllerManager.enabled + name: rkeControllerManager + repository: file://./charts/rkeControllerManager + - condition: rkeEtcd.enabled + name: rkeEtcd + repository: file://./charts/rkeEtcd + - condition: rkeProxy.enabled + name: rkeProxy + repository: file://./charts/rkeProxy + - condition: rkeScheduler.enabled + name: rkeScheduler + repository: file://./charts/rkeScheduler + - condition: global.cattle.windows.enabled + name: windowsExporter + repository: file://./charts/windowsExporter + description: Collects several related Helm charts, Grafana dashboards, and Prometheus + rules combined with documentation and scripts to provide easy to operate end-to-end + Kubernetes cluster monitoring with Prometheus using the Prometheus Operator. + digest: a2a9228357a52b8fedbb6e229547be80e4d25b500c0eb75f2f6b138ee8bf08bf + home: https://github.com/prometheus-operator/kube-prometheus + icon: https://raw.githubusercontent.com/prometheus/prometheus.github.io/master/assets/prometheus_logo-cb55bb5c346.png + keywords: + - operator + - prometheus + - kube-prometheus + - monitoring + kubeVersion: '>=1.16.0-0' + maintainers: + - name: vsliouniaev + - name: bismarck + - email: gianrubio@gmail.com + name: gianrubio + - email: github.gkarthiks@gmail.com + name: gkarthiks + - email: scott@r6by.com + name: scottrigby + - email: miroslav.hadzhiev@gmail.com + name: Xtigyro + - email: arvind.iyengar@suse.com + name: Arvind + name: rancher-monitoring + sources: + - https://github.com/prometheus-community/helm-charts + - https://github.com/prometheus-operator/kube-prometheus + type: application + urls: + - assets/rancher-monitoring/rancher-monitoring-14.5.100-rc05.tgz + version: 14.5.100-rc05 + - annotations: + artifacthub.io/links: | + - name: Chart Source + url: https://github.com/prometheus-community/helm-charts + - name: Upstream Project + url: https://github.com/prometheus-operator/kube-prometheus + artifacthub.io/operator: "true" + catalog.cattle.io/auto-install: rancher-monitoring-crd=match + catalog.cattle.io/certified: rancher + catalog.cattle.io/display-name: Monitoring + catalog.cattle.io/namespace: cattle-monitoring-system + catalog.cattle.io/provides-gvr: monitoring.coreos.com.prometheus/v1 + catalog.cattle.io/release-name: rancher-monitoring + catalog.cattle.io/requests-cpu: 4500m + catalog.cattle.io/requests-memory: 4000Mi + catalog.cattle.io/ui-component: monitoring + apiVersion: v2 + appVersion: 0.46.0 + created: "2021-04-28T01:10:40.350169478Z" + dependencies: + - condition: grafana.enabled + name: grafana + repository: file://./charts/grafana + - condition: k3sServer.enabled + name: k3sServer + repository: file://./charts/k3sServer + - condition: kubeStateMetrics.enabled + name: kube-state-metrics + repository: file://./charts/kube-state-metrics + - condition: kubeAdmControllerManager.enabled + name: kubeAdmControllerManager + repository: file://./charts/kubeAdmControllerManager + - condition: kubeAdmEtcd.enabled + name: kubeAdmEtcd + repository: file://./charts/kubeAdmEtcd + - condition: kubeAdmProxy.enabled + name: kubeAdmProxy + repository: file://./charts/kubeAdmProxy + - condition: kubeAdmScheduler.enabled + name: kubeAdmScheduler + repository: file://./charts/kubeAdmScheduler + - condition: prometheus-adapter.enabled + name: prometheus-adapter + repository: file://./charts/prometheus-adapter + - condition: nodeExporter.enabled + name: prometheus-node-exporter + repository: file://./charts/prometheus-node-exporter + - condition: rke2ControllerManager.enabled + name: rke2ControllerManager + repository: file://./charts/rke2ControllerManager + - condition: rke2Etcd.enabled + name: rke2Etcd + repository: file://./charts/rke2Etcd + - condition: rke2Proxy.enabled + name: rke2Proxy + repository: file://./charts/rke2Proxy + - condition: rke2Scheduler.enabled + name: rke2Scheduler + repository: file://./charts/rke2Scheduler + - condition: rkeControllerManager.enabled + name: rkeControllerManager + repository: file://./charts/rkeControllerManager + - condition: rkeEtcd.enabled + name: rkeEtcd + repository: file://./charts/rkeEtcd + - condition: rkeProxy.enabled + name: rkeProxy + repository: file://./charts/rkeProxy + - condition: rkeScheduler.enabled + name: rkeScheduler + repository: file://./charts/rkeScheduler + - condition: windowsExporter.enabled + name: windowsExporter + repository: file://./charts/windowsExporter + description: Collects several related Helm charts, Grafana dashboards, and Prometheus + rules combined with documentation and scripts to provide easy to operate end-to-end + Kubernetes cluster monitoring with Prometheus using the Prometheus Operator. + digest: c312a0114ff600d20cc3ff277246a31fd03645db7185f08760555d99ac7231c2 + home: https://github.com/prometheus-operator/kube-prometheus + icon: https://raw.githubusercontent.com/prometheus/prometheus.github.io/master/assets/prometheus_logo-cb55bb5c346.png + keywords: + - operator + - prometheus + - kube-prometheus + - monitoring + kubeVersion: '>=1.16.0-0' + maintainers: + - name: vsliouniaev + - name: bismarck + - email: gianrubio@gmail.com + name: gianrubio + - email: github.gkarthiks@gmail.com + name: gkarthiks + - email: scott@r6by.com + name: scottrigby + - email: miroslav.hadzhiev@gmail.com + name: Xtigyro + - email: arvind.iyengar@suse.com + name: Arvind + name: rancher-monitoring + sources: + - https://github.com/prometheus-community/helm-charts + - https://github.com/prometheus-operator/kube-prometheus + type: application + urls: + - assets/rancher-monitoring/rancher-monitoring-14.5.100-rc04.tgz + version: 14.5.100-rc04 + - annotations: + artifacthub.io/links: | + - name: Chart Source + url: https://github.com/prometheus-community/helm-charts + - name: Upstream Project + url: https://github.com/prometheus-operator/kube-prometheus + artifacthub.io/operator: "true" + catalog.cattle.io/auto-install: rancher-monitoring-crd=match + catalog.cattle.io/certified: rancher + catalog.cattle.io/display-name: Monitoring + catalog.cattle.io/namespace: cattle-monitoring-system + catalog.cattle.io/provides-gvr: monitoring.coreos.com.prometheus/v1 + catalog.cattle.io/release-name: rancher-monitoring + catalog.cattle.io/requests-cpu: 4500m + catalog.cattle.io/requests-memory: 4000Mi + catalog.cattle.io/ui-component: monitoring + apiVersion: v2 + appVersion: 0.46.0 + created: "2021-04-28T01:10:40.321887775Z" + dependencies: + - condition: grafana.enabled + name: grafana + repository: file://./charts/grafana + - condition: k3sServer.enabled + name: k3sServer + repository: file://./charts/k3sServer + - condition: kubeStateMetrics.enabled + name: kube-state-metrics + repository: file://./charts/kube-state-metrics + - condition: kubeAdmControllerManager.enabled + name: kubeAdmControllerManager + repository: file://./charts/kubeAdmControllerManager + - condition: kubeAdmEtcd.enabled + name: kubeAdmEtcd + repository: file://./charts/kubeAdmEtcd + - condition: kubeAdmProxy.enabled + name: kubeAdmProxy + repository: file://./charts/kubeAdmProxy + - condition: kubeAdmScheduler.enabled + name: kubeAdmScheduler + repository: file://./charts/kubeAdmScheduler + - condition: prometheus-adapter.enabled + name: prometheus-adapter + repository: file://./charts/prometheus-adapter + - condition: nodeExporter.enabled + name: prometheus-node-exporter + repository: file://./charts/prometheus-node-exporter + - condition: rke2ControllerManager.enabled + name: rke2ControllerManager + repository: file://./charts/rke2ControllerManager + - condition: rke2Etcd.enabled + name: rke2Etcd + repository: file://./charts/rke2Etcd + - condition: rke2Proxy.enabled + name: rke2Proxy + repository: file://./charts/rke2Proxy + - condition: rke2Scheduler.enabled + name: rke2Scheduler + repository: file://./charts/rke2Scheduler + - condition: rkeControllerManager.enabled + name: rkeControllerManager + repository: file://./charts/rkeControllerManager + - condition: rkeEtcd.enabled + name: rkeEtcd + repository: file://./charts/rkeEtcd + - condition: rkeProxy.enabled + name: rkeProxy + repository: file://./charts/rkeProxy + - condition: rkeScheduler.enabled + name: rkeScheduler + repository: file://./charts/rkeScheduler + - condition: windowsExporter.enabled + name: windowsExporter + repository: file://./charts/windowsExporter + description: Collects several related Helm charts, Grafana dashboards, and Prometheus + rules combined with documentation and scripts to provide easy to operate end-to-end + Kubernetes cluster monitoring with Prometheus using the Prometheus Operator. + digest: b13ae71d6e417ff96529789ea798c6c4e4cdf95111f9d21955f5cca0ba278d16 + home: https://github.com/prometheus-operator/kube-prometheus + icon: https://raw.githubusercontent.com/prometheus/prometheus.github.io/master/assets/prometheus_logo-cb55bb5c346.png + keywords: + - operator + - prometheus + - kube-prometheus + - monitoring + kubeVersion: '>=1.16.0-0' + maintainers: + - name: vsliouniaev + - name: bismarck + - email: gianrubio@gmail.com + name: gianrubio + - email: github.gkarthiks@gmail.com + name: gkarthiks + - email: scott@r6by.com + name: scottrigby + - email: miroslav.hadzhiev@gmail.com + name: Xtigyro + - email: arvind.iyengar@suse.com + name: Arvind + name: rancher-monitoring + sources: + - https://github.com/prometheus-community/helm-charts + - https://github.com/prometheus-operator/kube-prometheus + type: application + urls: + - assets/rancher-monitoring/rancher-monitoring-14.5.100-rc03.tgz + version: 14.5.100-rc03 + - annotations: + artifacthub.io/links: | + - name: Chart Source + url: https://github.com/prometheus-community/helm-charts + - name: Upstream Project + url: https://github.com/prometheus-operator/kube-prometheus + artifacthub.io/operator: "true" + catalog.cattle.io/auto-install: rancher-monitoring-crd=match + catalog.cattle.io/certified: rancher + catalog.cattle.io/display-name: Monitoring + catalog.cattle.io/namespace: cattle-monitoring-system + catalog.cattle.io/provides-gvr: monitoring.coreos.com.prometheus/v1 + catalog.cattle.io/release-name: rancher-monitoring + catalog.cattle.io/requests-cpu: 4500m + catalog.cattle.io/requests-memory: 4000Mi + catalog.cattle.io/ui-component: monitoring + apiVersion: v2 + appVersion: 0.46.0 + created: "2021-04-28T01:10:40.297488318Z" + dependencies: + - condition: grafana.enabled + name: grafana + repository: file://./charts/grafana + - condition: k3sServer.enabled + name: k3sServer + repository: file://./charts/k3sServer + - condition: kubeStateMetrics.enabled + name: kube-state-metrics + repository: file://./charts/kube-state-metrics + - condition: kubeAdmControllerManager.enabled + name: kubeAdmControllerManager + repository: file://./charts/kubeAdmControllerManager + - condition: kubeAdmEtcd.enabled + name: kubeAdmEtcd + repository: file://./charts/kubeAdmEtcd + - condition: kubeAdmProxy.enabled + name: kubeAdmProxy + repository: file://./charts/kubeAdmProxy + - condition: kubeAdmScheduler.enabled + name: kubeAdmScheduler + repository: file://./charts/kubeAdmScheduler + - condition: prometheus-adapter.enabled + name: prometheus-adapter + repository: file://./charts/prometheus-adapter + - condition: nodeExporter.enabled + name: prometheus-node-exporter + repository: file://./charts/prometheus-node-exporter + - condition: rke2ControllerManager.enabled + name: rke2ControllerManager + repository: file://./charts/rke2ControllerManager + - condition: rke2Etcd.enabled + name: rke2Etcd + repository: file://./charts/rke2Etcd + - condition: rke2Proxy.enabled + name: rke2Proxy + repository: file://./charts/rke2Proxy + - condition: rke2Scheduler.enabled + name: rke2Scheduler + repository: file://./charts/rke2Scheduler + - condition: rkeControllerManager.enabled + name: rkeControllerManager + repository: file://./charts/rkeControllerManager + - condition: rkeEtcd.enabled + name: rkeEtcd + repository: file://./charts/rkeEtcd + - condition: rkeProxy.enabled + name: rkeProxy + repository: file://./charts/rkeProxy + - condition: rkeScheduler.enabled + name: rkeScheduler + repository: file://./charts/rkeScheduler + - condition: windowsExporter.enabled + name: windowsExporter + repository: file://./charts/windowsExporter + description: Collects several related Helm charts, Grafana dashboards, and Prometheus + rules combined with documentation and scripts to provide easy to operate end-to-end + Kubernetes cluster monitoring with Prometheus using the Prometheus Operator. + digest: 4e6ec47c084a984ae656a10fc51bbb75cb75e29544a4ff9a73bd1fe1c69b8357 + home: https://github.com/prometheus-operator/kube-prometheus + icon: https://raw.githubusercontent.com/prometheus/prometheus.github.io/master/assets/prometheus_logo-cb55bb5c346.png + keywords: + - operator + - prometheus + - kube-prometheus + - monitoring + kubeVersion: '>=1.16.0-0' + maintainers: + - name: vsliouniaev + - name: bismarck + - email: gianrubio@gmail.com + name: gianrubio + - email: github.gkarthiks@gmail.com + name: gkarthiks + - email: scott@r6by.com + name: scottrigby + - email: miroslav.hadzhiev@gmail.com + name: Xtigyro + - email: arvind.iyengar@suse.com + name: Arvind + name: rancher-monitoring + sources: + - https://github.com/prometheus-community/helm-charts + - https://github.com/prometheus-operator/kube-prometheus + type: application + urls: + - assets/rancher-monitoring/rancher-monitoring-14.5.100-rc02.tgz + version: 14.5.100-rc02 + - annotations: + artifacthub.io/links: | + - name: Chart Source + url: https://github.com/prometheus-community/helm-charts + - name: Upstream Project + url: https://github.com/prometheus-operator/kube-prometheus + artifacthub.io/operator: "true" + catalog.cattle.io/auto-install: rancher-monitoring-crd=match + catalog.cattle.io/certified: rancher + catalog.cattle.io/display-name: Monitoring + catalog.cattle.io/namespace: cattle-monitoring-system + catalog.cattle.io/provides-gvr: monitoring.coreos.com.prometheus/v1 + catalog.cattle.io/release-name: rancher-monitoring + catalog.cattle.io/requests-cpu: 4500m + catalog.cattle.io/requests-memory: 4000Mi + catalog.cattle.io/ui-component: monitoring + apiVersion: v2 + appVersion: 0.46.0 + created: "2021-04-28T01:10:40.271789479Z" + dependencies: + - condition: grafana.enabled + name: grafana + repository: file://./charts/grafana + - condition: k3sServer.enabled + name: k3sServer + repository: file://./charts/k3sServer + - condition: kubeStateMetrics.enabled + name: kube-state-metrics + repository: file://./charts/kube-state-metrics + - condition: kubeAdmControllerManager.enabled + name: kubeAdmControllerManager + repository: file://./charts/kubeAdmControllerManager + - condition: kubeAdmEtcd.enabled + name: kubeAdmEtcd + repository: file://./charts/kubeAdmEtcd + - condition: kubeAdmProxy.enabled + name: kubeAdmProxy + repository: file://./charts/kubeAdmProxy + - condition: kubeAdmScheduler.enabled + name: kubeAdmScheduler + repository: file://./charts/kubeAdmScheduler + - condition: prometheus-adapter.enabled + name: prometheus-adapter + repository: file://./charts/prometheus-adapter + - condition: nodeExporter.enabled + name: prometheus-node-exporter + repository: file://./charts/prometheus-node-exporter + - condition: rke2ControllerManager.enabled + name: rke2ControllerManager + repository: file://./charts/rke2ControllerManager + - condition: rke2Etcd.enabled + name: rke2Etcd + repository: file://./charts/rke2Etcd + - condition: rke2Proxy.enabled + name: rke2Proxy + repository: file://./charts/rke2Proxy + - condition: rke2Scheduler.enabled + name: rke2Scheduler + repository: file://./charts/rke2Scheduler + - condition: rkeControllerManager.enabled + name: rkeControllerManager + repository: file://./charts/rkeControllerManager + - condition: rkeEtcd.enabled + name: rkeEtcd + repository: file://./charts/rkeEtcd + - condition: rkeProxy.enabled + name: rkeProxy + repository: file://./charts/rkeProxy + - condition: rkeScheduler.enabled + name: rkeScheduler + repository: file://./charts/rkeScheduler + - condition: windowsExporter.enabled + name: windowsExporter + repository: file://./charts/windowsExporter + description: Collects several related Helm charts, Grafana dashboards, and Prometheus + rules combined with documentation and scripts to provide easy to operate end-to-end + Kubernetes cluster monitoring with Prometheus using the Prometheus Operator. + digest: 0c8c9c9bfaabce4a98ddd1bdf2b5061ffa03836b6596e3412c5a790bd28be209 + home: https://github.com/prometheus-operator/kube-prometheus + icon: https://raw.githubusercontent.com/prometheus/prometheus.github.io/master/assets/prometheus_logo-cb55bb5c346.png + keywords: + - operator + - prometheus + - kube-prometheus + - monitoring + kubeVersion: '>=1.16.0-0' + maintainers: + - name: vsliouniaev + - name: bismarck + - email: gianrubio@gmail.com + name: gianrubio + - email: github.gkarthiks@gmail.com + name: gkarthiks + - email: scott@r6by.com + name: scottrigby + - email: miroslav.hadzhiev@gmail.com + name: Xtigyro + - email: arvind.iyengar@suse.com + name: Arvind + name: rancher-monitoring + sources: + - https://github.com/prometheus-community/helm-charts + - https://github.com/prometheus-operator/kube-prometheus + type: application + urls: + - assets/rancher-monitoring/rancher-monitoring-14.5.100-rc01.tgz + version: 14.5.100-rc01 + - annotations: + artifacthub.io/links: | + - name: Chart Source + url: https://github.com/prometheus-community/helm-charts + - name: Upstream Project + url: https://github.com/prometheus-operator/kube-prometheus + artifacthub.io/operator: "true" + catalog.cattle.io/auto-install: rancher-monitoring-crd=match + catalog.cattle.io/certified: rancher + catalog.cattle.io/display-name: Monitoring + catalog.cattle.io/namespace: cattle-monitoring-system + catalog.cattle.io/provides-gvr: monitoring.coreos.com.prometheus/v1 + catalog.cattle.io/release-name: rancher-monitoring + catalog.cattle.io/requests-cpu: 4500m + catalog.cattle.io/requests-memory: 4000Mi + catalog.cattle.io/ui-component: monitoring + apiVersion: v2 + appVersion: 0.46.0 + created: "2021-04-28T01:10:40.235146893Z" + dependencies: + - condition: grafana.enabled + name: grafana + repository: file://./charts/grafana + - condition: k3sServer.enabled + name: k3sServer + repository: file://./charts/k3sServer + - condition: kubeStateMetrics.enabled + name: kube-state-metrics + repository: file://./charts/kube-state-metrics + - condition: kubeAdmControllerManager.enabled + name: kubeAdmControllerManager + repository: file://./charts/kubeAdmControllerManager + - condition: kubeAdmEtcd.enabled + name: kubeAdmEtcd + repository: file://./charts/kubeAdmEtcd + - condition: kubeAdmProxy.enabled + name: kubeAdmProxy + repository: file://./charts/kubeAdmProxy + - condition: kubeAdmScheduler.enabled + name: kubeAdmScheduler + repository: file://./charts/kubeAdmScheduler + - condition: prometheus-adapter.enabled + name: prometheus-adapter + repository: file://./charts/prometheus-adapter + - condition: nodeExporter.enabled + name: prometheus-node-exporter + repository: file://./charts/prometheus-node-exporter + - condition: rke2ControllerManager.enabled + name: rke2ControllerManager + repository: file://./charts/rke2ControllerManager + - condition: rke2Etcd.enabled + name: rke2Etcd + repository: file://./charts/rke2Etcd + - condition: rke2Proxy.enabled + name: rke2Proxy + repository: file://./charts/rke2Proxy + - condition: rke2Scheduler.enabled + name: rke2Scheduler + repository: file://./charts/rke2Scheduler + - condition: rkeControllerManager.enabled + name: rkeControllerManager + repository: file://./charts/rkeControllerManager + - condition: rkeEtcd.enabled + name: rkeEtcd + repository: file://./charts/rkeEtcd + - condition: rkeProxy.enabled + name: rkeProxy + repository: file://./charts/rkeProxy + - condition: rkeScheduler.enabled + name: rkeScheduler + repository: file://./charts/rkeScheduler + - condition: windowsExporter.enabled + name: windowsExporter + repository: file://./charts/windowsExporter + description: Collects several related Helm charts, Grafana dashboards, and Prometheus + rules combined with documentation and scripts to provide easy to operate end-to-end + Kubernetes cluster monitoring with Prometheus using the Prometheus Operator. + digest: 240add26835de08eec696d8d8a02f8ad0a6e3816abe84981ac4c4118b95503fb + home: https://github.com/prometheus-operator/kube-prometheus + icon: https://raw.githubusercontent.com/prometheus/prometheus.github.io/master/assets/prometheus_logo-cb55bb5c346.png + keywords: + - operator + - prometheus + - kube-prometheus + - monitoring + kubeVersion: '>=1.16.0-0' + maintainers: + - name: vsliouniaev + - name: bismarck + - email: gianrubio@gmail.com + name: gianrubio + - email: github.gkarthiks@gmail.com + name: gkarthiks + - email: scott@r6by.com + name: scottrigby + - email: miroslav.hadzhiev@gmail.com + name: Xtigyro + - email: arvind.iyengar@suse.com + name: Arvind + name: rancher-monitoring + sources: + - https://github.com/prometheus-community/helm-charts + - https://github.com/prometheus-operator/kube-prometheus + type: application + urls: + - assets/rancher-monitoring/rancher-monitoring-14.5.100-rc00.tgz + version: 14.5.100-rc00 - annotations: artifacthub.io/links: | - name: Chart Source @@ -2238,7 +5719,9 @@ entries: - condition: rkeScheduler.enabled name: rkeScheduler repository: file://./charts/rkeScheduler - description: Collects several related Helm charts, Grafana dashboards, and Prometheus rules combined with documentation and scripts to provide easy to operate end-to-end Kubernetes cluster monitoring with Prometheus using the Prometheus Operator. + description: Collects several related Helm charts, Grafana dashboards, and Prometheus + rules combined with documentation and scripts to provide easy to operate end-to-end + Kubernetes cluster monitoring with Prometheus using the Prometheus Operator. digest: 64604ea0359b468c9a768ec484ebfdf3f776da5524571c85dd42bc6e600aeead home: https://github.com/prometheus-operator/kube-prometheus icon: https://raw.githubusercontent.com/prometheus/prometheus.github.io/master/assets/prometheus_logo-cb55bb5c346.png @@ -2367,7 +5850,9 @@ entries: name: rancher-pushprox repository: file://../../rancher-pushprox/charts version: 0.1.2 - description: Collects several related Helm charts, Grafana dashboards, and Prometheus rules combined with documentation and scripts to provide easy to operate end-to-end Kubernetes cluster monitoring with Prometheus using the Prometheus Operator. + description: Collects several related Helm charts, Grafana dashboards, and Prometheus + rules combined with documentation and scripts to provide easy to operate end-to-end + Kubernetes cluster monitoring with Prometheus using the Prometheus Operator. digest: 0e032ffa7397d564f3d00aa7719b62314e25f6e32e723de5db0f312f4a0034de home: https://github.com/prometheus-operator/kube-prometheus icon: https://raw.githubusercontent.com/prometheus/prometheus.github.io/master/assets/prometheus_logo-cb55bb5c346.png @@ -2494,7 +5979,9 @@ entries: name: rancher-pushprox repository: file://../../rancher-pushprox/charts version: 0.1.1 - description: Collects several related Helm charts, Grafana dashboards, and Prometheus rules combined with documentation and scripts to provide easy to operate end-to-end Kubernetes cluster monitoring with Prometheus using the Prometheus Operator. + description: Collects several related Helm charts, Grafana dashboards, and Prometheus + rules combined with documentation and scripts to provide easy to operate end-to-end + Kubernetes cluster monitoring with Prometheus using the Prometheus Operator. digest: 36890f0d8ae2f9c4990e61122d727a5df31dbe017f49d6334e7e13fb9c257cd8 home: https://github.com/prometheus-operator/kube-prometheus icon: https://raw.githubusercontent.com/prometheus/prometheus.github.io/master/assets/prometheus_logo-cb55bb5c346.png @@ -2630,7 +6117,9 @@ entries: name: rancher-pushprox repository: file://../../rancher-pushprox/charts version: 0.1.0 - description: Collects several related Helm charts, Grafana dashboards, and Prometheus rules combined with documentation and scripts to provide easy to operate end-to-end Kubernetes cluster monitoring with Prometheus using the Prometheus Operator. + description: Collects several related Helm charts, Grafana dashboards, and Prometheus + rules combined with documentation and scripts to provide easy to operate end-to-end + Kubernetes cluster monitoring with Prometheus using the Prometheus Operator. digest: 4c5845c1ca7c109052ce9cae5deea7dd0bc697cb334ba9d929f4c04f14835957 home: https://github.com/prometheus-operator/kube-prometheus icon: https://raw.githubusercontent.com/prometheus/prometheus.github.io/master/assets/prometheus_logo-cb55bb5c346.png @@ -2672,6 +6161,174 @@ entries: urls: - released/assets/rancher-monitoring/rancher-monitoring-crd-14.5.100.tgz version: 14.5.100 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: cattle-monitoring-system + catalog.cattle.io/release-name: rancher-monitoring-crd + apiVersion: v1 + created: "2021-04-28T01:10:40.596111324Z" + description: Installs the CRDs for rancher-monitoring. + digest: 62534b4d7cc8a1b4b40135e3a80cc142e11de356231d6be52b0bf533ec89249e + name: rancher-monitoring-crd + type: application + urls: + - assets/rancher-monitoring/rancher-monitoring-crd-14.5.100-rc11.tgz + version: 14.5.100-rc11 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: cattle-monitoring-system + catalog.cattle.io/release-name: rancher-monitoring-crd + apiVersion: v1 + created: "2021-04-28T01:10:40.588930025Z" + description: Installs the CRDs for rancher-monitoring. + digest: c509cb62faa615f2929f1bfa3d104ed9048aec3d4e3bb5bce4a60eeabe24be50 + name: rancher-monitoring-crd + type: application + urls: + - assets/rancher-monitoring/rancher-monitoring-crd-14.5.100-rc10.tgz + version: 14.5.100-rc10 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: cattle-monitoring-system + catalog.cattle.io/release-name: rancher-monitoring-crd + apiVersion: v1 + created: "2021-04-28T01:10:40.582434416Z" + description: Installs the CRDs for rancher-monitoring. + digest: 982e0868ddf5d7ca35ccf8a24bbbbf8a21b2af961097ac9e2898729ae5c871e4 + name: rancher-monitoring-crd + type: application + urls: + - assets/rancher-monitoring/rancher-monitoring-crd-14.5.100-rc09.tgz + version: 14.5.100-rc09 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: cattle-monitoring-system + catalog.cattle.io/release-name: rancher-monitoring-crd + apiVersion: v1 + created: "2021-04-28T01:10:40.574951721Z" + description: Installs the CRDs for rancher-monitoring. + digest: d8b89b435b7435e2b07c61f60e0fbe456d9a87abf10761ec09f30f39d8da5e0d + name: rancher-monitoring-crd + type: application + urls: + - assets/rancher-monitoring/rancher-monitoring-crd-14.5.100-rc08.tgz + version: 14.5.100-rc08 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: cattle-monitoring-system + catalog.cattle.io/release-name: rancher-monitoring-crd + apiVersion: v1 + created: "2021-04-28T01:10:40.56859361Z" + description: Installs the CRDs for rancher-monitoring. + digest: 364443857caa7fe5650f994304a7e6ff1e58ea41bafea99e9003e0bfdacab0d5 + name: rancher-monitoring-crd + type: application + urls: + - assets/rancher-monitoring/rancher-monitoring-crd-14.5.100-rc07.tgz + version: 14.5.100-rc07 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: cattle-monitoring-system + catalog.cattle.io/release-name: rancher-monitoring-crd + apiVersion: v1 + created: "2021-04-28T01:10:40.564008375Z" + description: Installs the CRDs for rancher-monitoring. + digest: ec7cb3a9f1b51ec866885c09962aef7793ba7b47f88f84ab16e32143c8c7dba6 + name: rancher-monitoring-crd + type: application + urls: + - assets/rancher-monitoring/rancher-monitoring-crd-14.5.100-rc06.tgz + version: 14.5.100-rc06 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: cattle-monitoring-system + catalog.cattle.io/release-name: rancher-monitoring-crd + apiVersion: v1 + created: "2021-04-28T01:10:40.55863715Z" + description: Installs the CRDs for rancher-monitoring. + digest: f04ebf5d7eb8fd7eb8220cbe56c03ece901b92d37b0ac77b240bebb709ce2d82 + name: rancher-monitoring-crd + type: application + urls: + - assets/rancher-monitoring/rancher-monitoring-crd-14.5.100-rc05.tgz + version: 14.5.100-rc05 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: cattle-monitoring-system + catalog.cattle.io/release-name: rancher-monitoring-crd + apiVersion: v1 + created: "2021-04-28T01:10:40.554646806Z" + description: Installs the CRDs for rancher-monitoring. + digest: fb0a9d0a2f0d89323efc158bfec517dc496bac733cd5509b79f4280a564d2ac6 + name: rancher-monitoring-crd + type: application + urls: + - assets/rancher-monitoring/rancher-monitoring-crd-14.5.100-rc04.tgz + version: 14.5.100-rc04 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: cattle-monitoring-system + catalog.cattle.io/release-name: rancher-monitoring-crd + apiVersion: v1 + created: "2021-04-28T01:10:40.55009647Z" + description: Installs the CRDs for rancher-monitoring. + digest: 3d60d1156d5a23c991dffdf237ba4c4aa25b4af516804dd1b563411ea9bcfb7b + name: rancher-monitoring-crd + type: application + urls: + - assets/rancher-monitoring/rancher-monitoring-crd-14.5.100-rc03.tgz + version: 14.5.100-rc03 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: cattle-monitoring-system + catalog.cattle.io/release-name: rancher-monitoring-crd + apiVersion: v1 + created: "2021-04-28T01:10:40.545052041Z" + description: Installs the CRDs for rancher-monitoring. + digest: 0cd2c6315cbc1d9852bd48d5fb52ec4784c01cb05fae20f0da8ecd12afd01c71 + name: rancher-monitoring-crd + type: application + urls: + - assets/rancher-monitoring/rancher-monitoring-crd-14.5.100-rc02.tgz + version: 14.5.100-rc02 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: cattle-monitoring-system + catalog.cattle.io/release-name: rancher-monitoring-crd + apiVersion: v1 + created: "2021-04-28T01:10:40.5408418Z" + description: Installs the CRDs for rancher-monitoring. + digest: 138559f78af79f702a0f726dec6030b8ed90804d554157b5a63c4a67cc59d527 + name: rancher-monitoring-crd + type: application + urls: + - assets/rancher-monitoring/rancher-monitoring-crd-14.5.100-rc01.tgz + version: 14.5.100-rc01 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: cattle-monitoring-system + catalog.cattle.io/release-name: rancher-monitoring-crd + apiVersion: v1 + created: "2021-04-28T01:10:40.536642559Z" + description: Installs the CRDs for rancher-monitoring. + digest: f5c71f94ad841368b3b88b138efe73c3d5349ec5249dd535606b0fa0b2cbd258 + name: rancher-monitoring-crd + type: application + urls: + - assets/rancher-monitoring/rancher-monitoring-crd-14.5.100-rc00.tgz + version: 14.5.100-rc00 - annotations: catalog.cattle.io/certified: rancher catalog.cattle.io/hidden: "true" @@ -2756,6 +6413,33 @@ entries: urls: - released/assets/rancher-node-exporter/rancher-node-exporter-1.16.201.tgz version: 1.16.201 + - annotations: + catalog.cattle.io/hidden: "true" + catalog.cattle.io/os: linux + catalog.rancher.io/certified: rancher + catalog.rancher.io/namespace: cattle-monitoring-system + catalog.rancher.io/release-name: rancher-node-exporter + apiVersion: v1 + appVersion: 1.1.2 + created: "2021-04-28T01:10:40.596938812Z" + description: A Helm chart for prometheus node-exporter + digest: 92884824f6b27ec8193c12ca9fc044b73d90a4fa2a77828cffe4a1f70eeab038 + home: https://github.com/prometheus/node_exporter/ + keywords: + - node-exporter + - prometheus + - exporter + maintainers: + - email: gianrubio@gmail.com + name: gianrubio + - name: vsliouniaev + - name: bismarck + name: rancher-node-exporter + sources: + - https://github.com/prometheus/node_exporter/ + urls: + - assets/rancher-node-exporter/rancher-node-exporter-1.16.201-rc00.tgz + version: 1.16.201-rc00 rancher-operator: - annotations: catalog.cattle.io/auto-install: rancher-operator-crd=match @@ -2775,6 +6459,78 @@ entries: urls: - released/assets/rancher-operator/rancher-operator-0.1.400.tgz version: 0.1.400 + - annotations: + catalog.cattle.io/auto-install: rancher-operator-crd=match + catalog.cattle.io/certified: rancher + catalog.cattle.io/experimental: "true" + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: rancher-operator-system + catalog.cattle.io/os: linux + catalog.cattle.io/provides-gvr: clusters.rancher.cattle.io/v1 + catalog.cattle.io/release-name: rancher-operator + apiVersion: v2 + appVersion: 0.1.4 + created: "2021-04-28T01:10:40.598325093Z" + description: Control Rancher using GitOps + digest: 11f8951b4213501166fb7e7a92bf88a7b9bc42bee07ab1a7cce3c81c6ce3719f + name: rancher-operator + urls: + - assets/rancher-operator/rancher-operator-0.1.400-rc04.tgz + version: 0.1.400-rc04 + - annotations: + catalog.cattle.io/auto-install: rancher-operator-crd=match + catalog.cattle.io/certified: rancher + catalog.cattle.io/experimental: "true" + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: rancher-operator-system + catalog.cattle.io/os: linux + catalog.cattle.io/provides-gvr: clusters.rancher.cattle.io/v1 + catalog.cattle.io/release-name: rancher-operator + apiVersion: v2 + appVersion: 0.1.4 + created: "2021-04-28T01:10:40.598017497Z" + description: Control Rancher using GitOps + digest: ed678ca8a35ed9972ace87b69bc83deb7cf9c0b56e2f35625d571d03f4db7681 + name: rancher-operator + urls: + - assets/rancher-operator/rancher-operator-0.1.400-rc03.tgz + version: 0.1.400-rc03 + - annotations: + catalog.cattle.io/auto-install: rancher-operator-crd=match + catalog.cattle.io/certified: rancher + catalog.cattle.io/experimental: "true" + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: rancher-operator-system + catalog.cattle.io/os: linux + catalog.cattle.io/provides-gvr: clusters.rancher.cattle.io/v1 + catalog.cattle.io/release-name: rancher-operator + apiVersion: v2 + appVersion: 0.1.4 + created: "2021-04-28T01:10:40.597748601Z" + description: Control Rancher using GitOps + digest: 26cd58e62c13a3475145b196a7c15b7556ef9a99815b5b3458ef6dc0080f5b80 + name: rancher-operator + urls: + - assets/rancher-operator/rancher-operator-0.1.400-rc02.tgz + version: 0.1.400-rc02 + - annotations: + catalog.cattle.io/auto-install: rancher-operator-crd=match + catalog.cattle.io/certified: rancher + catalog.cattle.io/experimental: "true" + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: rancher-operator-system + catalog.cattle.io/os: linux + catalog.cattle.io/provides-gvr: clusters.rancher.cattle.io/v1 + catalog.cattle.io/release-name: rancher-operator + apiVersion: v2 + appVersion: 0.1.4 + created: "2021-04-28T01:10:40.597482205Z" + description: Control Rancher using GitOps + digest: cb979672008ecb7decf5bc4b818b17762296a9bcf3b22ce29b10aec0f34b605e + name: rancher-operator + urls: + - assets/rancher-operator/rancher-operator-0.1.400-rc01.tgz + version: 0.1.400-rc01 - annotations: catalog.cattle.io/auto-install: rancher-operator-crd=match catalog.cattle.io/certified: rancher @@ -2793,6 +6549,24 @@ entries: urls: - released/assets/rancher-operator/rancher-operator-0.1.300.tgz version: 0.1.300 + - annotations: + catalog.cattle.io/auto-install: rancher-operator-crd=match + catalog.cattle.io/certified: rancher + catalog.cattle.io/experimental: "true" + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: rancher-operator-system + catalog.cattle.io/os: linux + catalog.cattle.io/provides-gvr: clusters.rancher.cattle.io/v1 + catalog.cattle.io/release-name: rancher-operator + apiVersion: v2 + appVersion: 0.1.3 + created: "2021-04-28T01:10:40.597217908Z" + description: Control Rancher using GitOps + digest: 8a789b297374fb34bb3d78cb62f38f98f1b950bea75064d6a9bffbbd0623e2b6 + name: rancher-operator + urls: + - assets/rancher-operator/rancher-operator-0.1.300-rc08.tgz + version: 0.1.300-rc08 - annotations: catalog.cattle.io/auto-install: rancher-operator-crd=match catalog.cattle.io/certified: rancher @@ -2863,6 +6637,66 @@ entries: urls: - released/assets/rancher-operator-crd/rancher-operator-crd-0.1.400.tgz version: 0.1.400 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: rancher-operator-system + catalog.cattle.io/os: linux + catalog.cattle.io/release-name: rancher-operator-crd + apiVersion: v2 + appVersion: 0.1.4 + created: "2021-04-28T01:10:40.600911456Z" + description: Rancher Operator CustomResourceDefinitions + digest: 66565c595f9acf9968f4ec7144efeb8e1cb4ed5a6a38c2150e28dc919a80d953 + name: rancher-operator-crd + urls: + - assets/rancher-operator-crd/rancher-operator-crd-0.1.400-rc04.tgz + version: 0.1.400-rc04 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: rancher-operator-system + catalog.cattle.io/os: linux + catalog.cattle.io/release-name: rancher-operator-crd + apiVersion: v2 + appVersion: 0.1.4 + created: "2021-04-28T01:10:40.600417563Z" + description: Rancher Operator CustomResourceDefinitions + digest: 3a758f1d00e4f891165774a6510a4ec2f7d8c99f11480193b666d2c65d4670c5 + name: rancher-operator-crd + urls: + - assets/rancher-operator-crd/rancher-operator-crd-0.1.400-rc03.tgz + version: 0.1.400-rc03 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: rancher-operator-system + catalog.cattle.io/os: linux + catalog.cattle.io/release-name: rancher-operator-crd + apiVersion: v2 + appVersion: 0.1.4 + created: "2021-04-28T01:10:40.59992807Z" + description: Rancher Operator CustomResourceDefinitions + digest: cadf7abfc4f5e12efcc66ece8e2290345789f3e2c192f18d16e532d93cb2a7ee + name: rancher-operator-crd + urls: + - assets/rancher-operator-crd/rancher-operator-crd-0.1.400-rc02.tgz + version: 0.1.400-rc02 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: rancher-operator-system + catalog.cattle.io/os: linux + catalog.cattle.io/release-name: rancher-operator-crd + apiVersion: v2 + appVersion: 0.1.4 + created: "2021-04-28T01:10:40.599355878Z" + description: Rancher Operator CustomResourceDefinitions + digest: ccb9e8dfd344a6113e8406ea686f0d47825f8427f0c71651c5c319f89ad7e730 + name: rancher-operator-crd + urls: + - assets/rancher-operator-crd/rancher-operator-crd-0.1.400-rc01.tgz + version: 0.1.400-rc01 - annotations: catalog.cattle.io/certified: rancher catalog.cattle.io/hidden: "true" @@ -2878,6 +6712,21 @@ entries: urls: - released/assets/rancher-operator-crd/rancher-operator-crd-0.1.300.tgz version: 0.1.300 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: rancher-operator-system + catalog.cattle.io/os: linux + catalog.cattle.io/release-name: rancher-operator-crd + apiVersion: v2 + appVersion: 0.1.3 + created: "2021-04-28T01:10:40.598838686Z" + description: Rancher Operator CustomResourceDefinitions + digest: 1d7002f7438edf3b79eae7d872cd39c3f51c26be4136182618cfe95082cfae57 + name: rancher-operator-crd + urls: + - assets/rancher-operator-crd/rancher-operator-crd-0.1.300-rc08.tgz + version: 0.1.300-rc08 - annotations: catalog.cattle.io/certified: rancher catalog.cattle.io/hidden: "true" @@ -2936,6 +6785,48 @@ entries: urls: - released/assets/rancher-prom2teams/rancher-prom2teams-0.2.000.tgz version: 0.2.000 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/os: linux + catalog.cattle.io/release-name: rancher-prom2teams + apiVersion: v1 + appVersion: 3.2.1 + created: "2021-04-28T01:10:40.602545733Z" + description: A Helm chart for Prom2Teams based on the upstream https://github.com/idealista/prom2teams + digest: 95e6b362dc67dc83e0359845ccad06a0d38cfbecf45203e6a4d361eea79f1d8e + name: rancher-prom2teams + urls: + - assets/rancher-prom2teams/rancher-prom2teams-0.2.000-rc03.tgz + version: 0.2.000-rc03 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/os: linux + catalog.cattle.io/release-name: rancher-prom2teams + apiVersion: v1 + appVersion: 3.2.1 + created: "2021-04-28T01:10:40.601898943Z" + description: A Helm chart for Prom2Teams based on the upstream https://github.com/idealista/prom2teams + digest: caa8a550e34b092781d1bd23a81bbf01b6104a2be02d0c7e054692fbbe8c634f + name: rancher-prom2teams + urls: + - assets/rancher-prom2teams/rancher-prom2teams-0.2.000-rc02.tgz + version: 0.2.000-rc02 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/os: linux + catalog.cattle.io/release-name: rancher-prom2teams + apiVersion: v1 + appVersion: 3.2.1 + created: "2021-04-28T01:10:40.601403449Z" + description: A Helm chart for Prom2Teams based on the upstream https://github.com/idealista/prom2teams + digest: 8fb5e52c0680129fb8b4c4074567c909b6d8d38c2bff79d5183edf459cea5af3 + name: rancher-prom2teams + urls: + - assets/rancher-prom2teams/rancher-prom2teams-0.2.000-rc01.tgz + version: 0.2.000-rc01 rancher-prometheus-adapter: - annotations: catalog.cattle.io/hidden: "true" @@ -2967,6 +6858,66 @@ entries: urls: - released/assets/rancher-prometheus-adapter/rancher-prometheus-adapter-2.12.101.tgz version: 2.12.101 + - annotations: + catalog.cattle.io/hidden: "true" + catalog.cattle.io/os: linux + catalog.rancher.io/certified: rancher + catalog.rancher.io/namespace: cattle-monitoring-system + catalog.rancher.io/release-name: rancher-prometheus-adapter + apiVersion: v1 + appVersion: v0.8.3 + created: "2021-04-28T01:10:40.604513306Z" + description: A Helm chart for k8s prometheus adapter + digest: 504c418856052bc1798476b6a9ad3d2efcc5c3591502af296406a732ad2077a8 + home: https://github.com/DirectXMan12/k8s-prometheus-adapter + keywords: + - hpa + - metrics + - prometheus + - adapter + maintainers: + - email: mattias.gees@jetstack.io + name: mattiasgees + - name: steven-sheehy + - email: hfernandez@mesosphere.com + name: hectorj2f + name: rancher-prometheus-adapter + sources: + - https://github.com/kubernetes/charts + - https://github.com/DirectXMan12/k8s-prometheus-adapter + urls: + - assets/rancher-prometheus-adapter/rancher-prometheus-adapter-2.12.101-rc01.tgz + version: 2.12.101-rc01 + - annotations: + catalog.cattle.io/hidden: "true" + catalog.cattle.io/os: linux + catalog.rancher.io/certified: rancher + catalog.rancher.io/namespace: cattle-monitoring-system + catalog.rancher.io/release-name: rancher-prometheus-adapter + apiVersion: v1 + appVersion: v0.8.3 + created: "2021-04-28T01:10:40.60352262Z" + description: A Helm chart for k8s prometheus adapter + digest: 85bd2042f013a1ac3773084faf6ed72c55cd7b444eff19778cd4c16e507bf2b5 + home: https://github.com/DirectXMan12/k8s-prometheus-adapter + keywords: + - hpa + - metrics + - prometheus + - adapter + maintainers: + - email: mattias.gees@jetstack.io + name: mattiasgees + - name: steven-sheehy + - email: hfernandez@mesosphere.com + name: hectorj2f + name: rancher-prometheus-adapter + sources: + - https://github.com/kubernetes/charts + - https://github.com/DirectXMan12/k8s-prometheus-adapter + urls: + - assets/rancher-prometheus-adapter/rancher-prometheus-adapter-2.12.101-rc00.tgz + version: 2.12.101-rc00 rancher-pushprox: - annotations: catalog.cattle.io/hidden: "true" @@ -2977,13 +6928,31 @@ entries: apiVersion: v1 appVersion: 0.1.0 created: "2021-04-27T19:45:02.737852904Z" - description: Sets up a deployment of the PushProx proxy and a DaemonSet of PushProx clients. + description: Sets up a deployment of the PushProx proxy and a DaemonSet of PushProx + clients. digest: 61ad8de5f4450b4b1aceb3117d41a96eef2fb1a0f494882a7d49abc198a07f54 name: rancher-pushprox type: application urls: - released/assets/rancher-pushprox/rancher-pushprox-0.1.300.tgz version: 0.1.300 + - annotations: + catalog.cattle.io/hidden: "true" + catalog.cattle.io/os: linux + catalog.rancher.io/certified: rancher + catalog.rancher.io/namespace: cattle-monitoring-system + catalog.rancher.io/release-name: rancher-pushprox + apiVersion: v1 + appVersion: 0.1.0 + created: "2021-04-28T01:10:40.605083898Z" + description: Sets up a deployment of the PushProx proxy and a DaemonSet of PushProx + clients. + digest: 6ec2982d7ea75f763859c0d6e04c5ea537e21e450894c5e31d1e9fd3efd613dc + name: rancher-pushprox + type: application + urls: + - assets/rancher-pushprox/rancher-pushprox-0.1.300-rc00.tgz + version: 0.1.300-rc00 - annotations: catalog.cattle.io/hidden: "true" catalog.rancher.io/certified: rancher @@ -2992,7 +6961,8 @@ entries: apiVersion: v1 appVersion: 0.1.0 created: "2021-04-27T19:45:02.737133695Z" - description: Sets up a deployment of the PushProx proxy and a DaemonSet of PushProx clients. + description: Sets up a deployment of the PushProx proxy and a DaemonSet of PushProx + clients. digest: cb9552eb4ee8899ef1af5583c8080c27227dd3b10d919748f2caf79cb8197198 name: rancher-pushprox type: application @@ -3007,7 +6977,8 @@ entries: apiVersion: v1 appVersion: 0.1.0 created: "2021-04-27T19:45:02.735583078Z" - description: Sets up a deployment of the PushProx proxy and a DaemonSet of PushProx clients. + description: Sets up a deployment of the PushProx proxy and a DaemonSet of PushProx + clients. digest: a4b3506a74ea6cc4e8c6610cb92451d3072f4f7bac7b503e2dea9423697eaf68 name: rancher-pushprox type: application @@ -3023,7 +6994,8 @@ entries: apiVersion: v1 appVersion: 0.1.0 created: "2021-04-27T19:45:02.73489047Z" - description: Sets up a deployment of the PushProx proxy and a DaemonSet of PushProx clients. + description: Sets up a deployment of the PushProx proxy and a DaemonSet of PushProx + clients. digest: 4b53e4de2aede1f3d63c815ca36bd61f31d38c59769d9982b14aca3bbf575724 name: rancher-pushprox type: application @@ -3039,7 +7011,8 @@ entries: apiVersion: v1 appVersion: 0.1.0 created: "2021-04-27T19:45:02.734164462Z" - description: Sets up a deployment of the PushProx proxy and a DaemonSet of PushProx clients. + description: Sets up a deployment of the PushProx proxy and a DaemonSet of PushProx + clients. digest: 73b11a51246c216a7587628fee346541d6b5e82246e11d586b4926254f7999fa name: rancher-pushprox type: application @@ -3062,6 +7035,66 @@ entries: urls: - released/assets/rancher-sachet/rancher-sachet-1.0.100.tgz version: 1.0.100 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/os: linux + catalog.cattle.io/release-name: rancher-sachet + apiVersion: v2 + appVersion: 0.2.3 + created: "2021-04-28T01:10:40.608128055Z" + description: A Helm chart for Sachet based on the upstream https://github.com/messagebird/sachet + digest: deaf2d96b9f5f2ee84a1167149bd4bf6108528ce83009f38e64c2a483f484d4e + name: rancher-sachet + type: application + urls: + - assets/rancher-sachet/rancher-sachet-1.0.100-rc04.tgz + version: 1.0.100-rc04 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/os: linux + catalog.cattle.io/release-name: rancher-sachet + apiVersion: v2 + appVersion: 0.2.3 + created: "2021-04-28T01:10:40.607422965Z" + description: A Helm chart for Sachet based on the upstream https://github.com/messagebird/sachet + digest: 9bf4bcf83bf17d0972fbca2c45284b1e010358c841d86bc04300c73bc5fe87eb + name: rancher-sachet + type: application + urls: + - assets/rancher-sachet/rancher-sachet-1.0.100-rc03.tgz + version: 1.0.100-rc03 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/os: linux + catalog.cattle.io/release-name: rancher-sachet + apiVersion: v2 + appVersion: 0.2.3 + created: "2021-04-28T01:10:40.606526878Z" + description: A Helm chart for Sachet based on the upstream https://github.com/messagebird/sachet + digest: a861bcec2a0e88f9be44575db013807ca32dbed0c32e2c0f088e3bbd07819f33 + name: rancher-sachet + type: application + urls: + - assets/rancher-sachet/rancher-sachet-1.0.100-rc02.tgz + version: 1.0.100-rc02 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/os: linux + catalog.cattle.io/release-name: rancher-sachet + apiVersion: v2 + appVersion: 0.2.3 + created: "2021-04-28T01:10:40.605896486Z" + description: A Helm chart for Sachet based on the upstream https://github.com/messagebird/sachet + digest: ed8e6d13d9fb29db5b477bc1876e0f2501d9aacaeb62d333e9033eda40211f65 + name: rancher-sachet + type: application + urls: + - assets/rancher-sachet/rancher-sachet-1.0.100-rc01.tgz + version: 1.0.100-rc01 rancher-tracing: - annotations: catalog.cattle.io/hidden: "true" @@ -3072,12 +7105,48 @@ entries: apiVersion: v1 appVersion: 1.20.0 created: "2021-04-27T19:45:02.740673436Z" - description: A quick start Jaeger Tracing installation using the all-in-one demo. This is not production qualified. Refer to https://www.jaegertracing.io/ for details. + description: A quick start Jaeger Tracing installation using the all-in-one demo. + This is not production qualified. Refer to https://www.jaegertracing.io/ for + details. digest: 20f078713456457780c1c30ad9562f680b1406c240c4a246b11776bdb2523246 name: rancher-tracing urls: - released/assets/rancher-tracing/rancher-tracing-1.20.100.tgz version: 1.20.100 + - annotations: + catalog.cattle.io/hidden: "true" + catalog.cattle.io/os: linux + catalog.rancher.io/certified: rancher + catalog.rancher.io/namespace: istio-system + catalog.rancher.io/release-name: rancher-tracing + apiVersion: v1 + appVersion: 1.20.0 + created: "2021-04-28T01:10:40.609654734Z" + description: A quick start Jaeger Tracing installation using the all-in-one demo. + This is not production qualified. Refer to https://www.jaegertracing.io/ for + details. + digest: 13b38c2242fa109a77d00cadb23347feac25ada3de37ec54f49bf0421d379b7b + name: rancher-tracing + urls: + - assets/rancher-tracing/rancher-tracing-1.20.100-rc01.tgz + version: 1.20.100-rc01 + - annotations: + catalog.cattle.io/hidden: "true" + catalog.cattle.io/os: linux + catalog.rancher.io/certified: rancher + catalog.rancher.io/namespace: istio-system + catalog.rancher.io/release-name: rancher-tracing + apiVersion: v1 + appVersion: 1.20.0 + created: "2021-04-28T01:10:40.60921374Z" + description: A quick start Jaeger Tracing installation using the all-in-one demo. + This is not production qualified. Refer to https://www.jaegertracing.io/ for + details. + digest: f571aec5860233bd1d2e163d37b3cf8a54b19aaf29774a921e53f2559dab022e + name: rancher-tracing + urls: + - assets/rancher-tracing/rancher-tracing-1.20.100-rc00.tgz + version: 1.20.100-rc00 - annotations: catalog.cattle.io/hidden: "true" catalog.cattle.io/os: linux @@ -3087,12 +7156,31 @@ entries: apiVersion: v1 appVersion: 1.20.0 created: "2021-04-27T19:45:02.739630524Z" - description: A quick start Jaeger Tracing installation using the all-in-one demo. This is not production qualified. Refer to https://www.jaegertracing.io/ for details. + description: A quick start Jaeger Tracing installation using the all-in-one demo. + This is not production qualified. Refer to https://www.jaegertracing.io/ for + details. digest: 509c4d245fb245157d16b643f55aa9437cbfe19e087326b0f609cae58d0b5499 name: rancher-tracing urls: - released/assets/rancher-tracing/rancher-tracing-1.20.002.tgz version: 1.20.002 + - annotations: + catalog.cattle.io/hidden: "true" + catalog.cattle.io/os: linux + catalog.rancher.io/certified: rancher + catalog.rancher.io/namespace: istio-system + catalog.rancher.io/release-name: rancher-tracing + apiVersion: v1 + appVersion: 1.20.0 + created: "2021-04-28T01:10:40.608781046Z" + description: A quick start Jaeger Tracing installation using the all-in-one demo. + This is not production qualified. Refer to https://www.jaegertracing.io/ for + details. + digest: 8fbbcfc0bf2754114245db70a8ba16b8e306c33d0b9208cdf3a69e9a9f8db3de + name: rancher-tracing + urls: + - assets/rancher-tracing/rancher-tracing-1.20.002-rc00.tgz + version: 1.20.002-rc00 - annotations: catalog.cattle.io/hidden: "true" catalog.cattle.io/os: linux @@ -3102,7 +7190,9 @@ entries: apiVersion: v1 appVersion: 1.20.0 created: "2021-04-27T19:45:02.739061617Z" - description: A quick start Jaeger Tracing installation using the all-in-one demo. This is not production qualified. Refer to https://www.jaegertracing.io/ for details. + description: A quick start Jaeger Tracing installation using the all-in-one demo. + This is not production qualified. Refer to https://www.jaegertracing.io/ for + details. digest: 1a64b24b3b320407191918acef460ceceebb462b01b7a820568e81a81f89e8b9 name: rancher-tracing urls: @@ -3132,6 +7222,29 @@ entries: urls: - released/assets/rancher-vsphere-cpi/rancher-vsphere-cpi-1.0.000.tgz version: 1.0.000 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/display-name: vSphere CPI + catalog.cattle.io/namespace: kube-system + catalog.cattle.io/os: linux + catalog.cattle.io/release-name: vsphere-cpi + apiVersion: v1 + appVersion: 1.0.0 + created: "2021-04-28T01:10:40.610059428Z" + description: vSphere Cloud Provider Interface (CPI) + digest: 0b8e2dfc8e7a4fbe6e77b57377085f51ecd98cfbbaa1fa3cabecd1ca20bdddf3 + icon: https://charts.rancher.io/assets/logos/vsphere-cpi.svg + keywords: + - infrastructure + maintainers: + - email: caleb@rancher.com + name: Rancher + name: rancher-vsphere-cpi + sources: + - https://github.com/kubernetes/cloud-provider-vsphere + urls: + - assets/rancher-vsphere-cpi/rancher-vsphere-cpi-1.0.000-rc01.tgz + version: 1.0.000-rc01 rancher-vsphere-csi: - annotations: catalog.cattle.io/certified: rancher @@ -3156,6 +7269,29 @@ entries: urls: - released/assets/rancher-vsphere-csi/rancher-vsphere-csi-2.1.000.tgz version: 2.1.000 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/display-name: vSphere CSI + catalog.cattle.io/namespace: kube-system + catalog.cattle.io/os: linux + catalog.cattle.io/release-name: vsphere-csi + apiVersion: v1 + appVersion: 2.1.0 + created: "2021-04-28T01:10:40.61065092Z" + description: vSphere Cloud Storage Interface (CSI) + digest: cbfdb71894414d8fcad2afee370f5a254516342002dec62cfd2fabd0e505439f + icon: https://charts.rancher.io/assets/logos/vsphere-csi.svg + keywords: + - infrastructure + maintainers: + - email: caleb@rancher.com + name: Rancher + name: rancher-vsphere-csi + sources: + - https://github.com/kubernetes-sigs/vsphere-csi-driver + urls: + - assets/rancher-vsphere-csi/rancher-vsphere-csi-2.1.000-rc01.tgz + version: 2.1.000-rc01 rancher-webhook: - annotations: catalog.cattle.io/certified: rancher @@ -3172,6 +7308,51 @@ entries: urls: - released/assets/rancher-webhook/rancher-webhook-0.1.000.tgz version: 0.1.000 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: cattle-system + catalog.cattle.io/os: linux + catalog.cattle.io/release-name: rancher-webhook + apiVersion: v2 + appVersion: 0.1.0 + created: "2021-04-28T01:10:40.61136791Z" + description: ValidatingAdmissionWebhook for Rancher types + digest: 3fb6016b78780b67ebb7a0eb1d9b3a269cbc97c7d079f3b918bc399e299e6392 + name: rancher-webhook + urls: + - assets/rancher-webhook/rancher-webhook-0.1.000-rc02.tgz + version: 0.1.000-rc02 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: cattle-system + catalog.cattle.io/os: linux + catalog.cattle.io/release-name: rancher-webhook + apiVersion: v2 + appVersion: 0.1.0 + created: "2021-04-28T01:10:40.611109013Z" + description: ValidatingAdmissionWebhook for Rancher types + digest: 83431cb23bac72a8513a5bc10c5d864eb1ba93e7ebf93e38fdac4a108dd3a1c9 + name: rancher-webhook + urls: + - assets/rancher-webhook/rancher-webhook-0.1.000-rc01.tgz + version: 0.1.000-rc01 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: cattle-system + catalog.cattle.io/os: linux + catalog.cattle.io/release-name: rancher-webhook + apiVersion: v2 + appVersion: 0.1.0-beta9 + created: "2021-04-28T01:10:40.610880316Z" + description: ValidatingAdmissionWebhook for Rancher types + digest: bcc2ab96dfeb47d3536d6db28d95ff1c15dc48e67787fc91e01ed49d9a4850a9 + name: rancher-webhook + urls: + - assets/rancher-webhook/rancher-webhook-0.1.0-beta901-rc00.tgz + version: 0.1.0-beta901-rc00 - annotations: catalog.cattle.io/certified: rancher catalog.cattle.io/hidden: "true" @@ -3252,6 +7433,119 @@ entries: urls: - released/assets/rancher-windows-exporter/rancher-windows-exporter-0.1.000.tgz version: 0.1.000 + - annotations: + catalog.cattle.io/hidden: "true" + catalog.cattle.io/os: windows + catalog.rancher.io/certified: rancher + catalog.rancher.io/namespace: cattle-monitoring-system + catalog.rancher.io/release-name: rancher-windows-exporter + apiVersion: v1 + appVersion: 0.0.4 + created: "2021-04-28T01:10:40.614398167Z" + description: Sets up monitoring metrics from Windows nodes via Prometheus windows-exporter + digest: 4ba38a15a4c8c42140340b81c545e0336bbe881bcf8a6a757b1fd552e2cee4c0 + maintainers: + - email: arvind.iyengar@rancher.com + name: aiyengar2 + name: rancher-windows-exporter + type: application + urls: + - assets/rancher-windows-exporter/rancher-windows-exporter-0.1.000-rc05.tgz + version: 0.1.000-rc05 + - annotations: + catalog.cattle.io/hidden: "true" + catalog.cattle.io/os: windows + catalog.rancher.io/certified: rancher + catalog.rancher.io/namespace: cattle-monitoring-system + catalog.rancher.io/release-name: rancher-windows-exporter + apiVersion: v1 + appVersion: 0.0.4 + created: "2021-04-28T01:10:40.613952673Z" + description: Sets up monitoring metrics from Windows nodes via Prometheus windows-exporter + digest: 1bf9bd8fb9e8171ea24f5b6321cc16c538f8dc94fa161c9044a033c6452d3089 + maintainers: + - email: arvind.iyengar@rancher.com + name: aiyengar2 + name: rancher-windows-exporter + type: application + urls: + - assets/rancher-windows-exporter/rancher-windows-exporter-0.1.000-rc04.tgz + version: 0.1.000-rc04 + - annotations: + catalog.cattle.io/hidden: "true" + catalog.cattle.io/os: windows + catalog.rancher.io/certified: rancher + catalog.rancher.io/namespace: cattle-monitoring-system + catalog.rancher.io/release-name: rancher-windows-exporter + apiVersion: v1 + appVersion: 0.0.4 + created: "2021-04-28T01:10:40.61350058Z" + description: Sets up monitoring metrics from Windows nodes via Prometheus windows-exporter + digest: 22e1e05ee50870cc705e4e31d763994188d97219d50ebebab60de4d97a9d393d + maintainers: + - email: arvind.iyengar@rancher.com + name: aiyengar2 + name: rancher-windows-exporter + type: application + urls: + - assets/rancher-windows-exporter/rancher-windows-exporter-0.1.000-rc03.tgz + version: 0.1.000-rc03 + - annotations: + catalog.cattle.io/hidden: "true" + catalog.cattle.io/os: windows + catalog.rancher.io/certified: rancher + catalog.rancher.io/namespace: cattle-monitoring-system + catalog.rancher.io/release-name: rancher-windows-exporter + apiVersion: v1 + appVersion: 0.0.4 + created: "2021-04-28T01:10:40.613018286Z" + description: Sets up monitoring metrics from Windows nodes via Prometheus windows-exporter + digest: 64b9687f927aa8b2dfae478f739536e86319a50462a59a9aa4975803564b3163 + maintainers: + - email: arvind.iyengar@rancher.com + name: aiyengar2 + name: rancher-windows-exporter + type: application + urls: + - assets/rancher-windows-exporter/rancher-windows-exporter-0.1.000-rc02.tgz + version: 0.1.000-rc02 + - annotations: + catalog.cattle.io/hidden: "true" + catalog.cattle.io/os: windows + catalog.rancher.io/certified: rancher + catalog.rancher.io/namespace: cattle-monitoring-system + catalog.rancher.io/release-name: rancher-windows-exporter + apiVersion: v1 + appVersion: 0.0.4 + created: "2021-04-28T01:10:40.612517393Z" + description: Sets up monitoring metrics from Windows nodes via Prometheus windows-exporter + digest: f00af930f333b1458152ac6befb0a68f33112a54d5cb8aca6777436f342f50aa + maintainers: + - email: arvind.iyengar@rancher.com + name: aiyengar2 + name: rancher-windows-exporter + type: application + urls: + - assets/rancher-windows-exporter/rancher-windows-exporter-0.1.000-rc01.tgz + version: 0.1.000-rc01 + - annotations: + catalog.cattle.io/os: windows + catalog.rancher.io/certified: rancher + catalog.rancher.io/namespace: cattle-monitoring-system + catalog.rancher.io/release-name: rancher-windows-exporter + apiVersion: v1 + appVersion: 0.0.4 + created: "2021-04-28T01:10:40.611871302Z" + description: Sets up monitoring metrics from Windows nodes via Prometheus windows-exporter + digest: b90e452266b18882787703a371ff4ac135b51439d022e9e75370f17c7076fc69 + maintainers: + - email: arvind.iyengar@rancher.com + name: aiyengar2 + name: rancher-windows-exporter + type: application + urls: + - assets/rancher-windows-exporter/rancher-windows-exporter-0.1.000-rc00.tgz + version: 0.1.000-rc00 rancher-wins-upgrader: - annotations: catalog.cattle.io/certified: rancher @@ -3261,7 +7555,8 @@ entries: apiVersion: v2 appVersion: 0.1.0 created: "2021-04-27T19:45:02.745737893Z" - description: Manages upgrading the wins server version and configuration across all of your Windows nodes + description: Manages upgrading the wins server version and configuration across + all of your Windows nodes digest: 454cfe736d571932f3d78e04b14b5627faf273d56d363750d805d0d1afbf96a7 maintainers: - email: arvind.iyengar@suse.com @@ -3271,6 +7566,63 @@ entries: urls: - released/assets/rancher-wins-upgrader/rancher-wins-upgrader-0.0.100.tgz version: 0.0.100 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/namespace: cattle-wins-system + catalog.cattle.io/os: windows + catalog.cattle.io/release-name: rancher-wins-upgrader + apiVersion: v2 + appVersion: 0.1.0 + created: "2021-04-28T01:10:40.615980445Z" + description: Manages upgrading the wins server version and configuration across + all of your Windows nodes + digest: 03b9d7204b607ddf69b07aece5b946af338e406f6198dcf36b6ef635db541ba2 + maintainers: + - email: arvind.iyengar@suse.com + name: aiyengar2 + name: rancher-wins-upgrader + type: application + urls: + - assets/rancher-wins-upgrader/rancher-wins-upgrader-0.0.100-rc02.tgz + version: 0.0.100-rc02 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/namespace: cattle-wins-system + catalog.cattle.io/os: windows + catalog.cattle.io/release-name: rancher-wins-upgrader + apiVersion: v2 + appVersion: 0.1.0 + created: "2021-04-28T01:10:40.615332954Z" + description: Manages upgrading the wins server version and configuration across + all of your Windows nodes + digest: daba3847de46b2af85db462d2f01f43a5d02cdf19ad8377c3966ea8afc1199d6 + maintainers: + - email: arvind.iyengar@suse.com + name: aiyengar2 + name: rancher-wins-upgrader + type: application + urls: + - assets/rancher-wins-upgrader/rancher-wins-upgrader-0.0.100-rc01.tgz + version: 0.0.100-rc01 + - annotations: + catalog.cattle.io/os: windows + catalog.rancher.io/certified: rancher + catalog.rancher.io/namespace: cattle-wins-system + catalog.rancher.io/release-name: rancher-wins-upgrader + apiVersion: v2 + appVersion: 0.1.0 + created: "2021-04-28T01:10:40.614843261Z" + description: Manages upgrading the wins server version and configuration across + all of your Windows nodes + digest: 02c0c5e64d4bb535220c4a0027c30519663c94ac3b0c02062628073df8b8457f + maintainers: + - email: arvind.iyengar@suse.com + name: aiyengar2 + name: rancher-wins-upgrader + type: application + urls: + - assets/rancher-wins-upgrader/rancher-wins-upgrader-0.0.100-rc00.tgz + version: 0.0.100-rc00 rio: - annotations: catalog.cattle.io/certified: rancher @@ -3291,6 +7643,25 @@ entries: urls: - released/assets/rio/rio-0.8.001.tgz version: 0.8.001 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/display-name: Rio + catalog.cattle.io/experimental: "true" + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: rio-system + catalog.cattle.io/release-name: rio + catalog.cattle.io/requires-gvr: networking.istio.io.virtualservice/v1beta1 + apiVersion: v1 + appVersion: 0.8.0 + created: "2021-04-28T01:10:40.616369639Z" + description: The application deployment engine for Kubernetes + digest: 5936209cbf90fa116da0907fbcf6fef4a4f392f1d1ff9b04a21cd83bb66dfc69 + home: https://rio.io + icon: https://charts.rancher.io/assets/logos/rio.svg + name: rio + urls: + - assets/rio/rio-0.8.001-rc00.tgz + version: 0.8.001-rc00 - annotations: catalog.cattle.io/certified: rancher catalog.cattle.io/display-name: Rio