mirror of https://git.rancher.io/charts
[dev-v2.9] elemental 104.1.1+up1.5.4 update (#4232)
Signed-off-by: Francesco Giudici <francesco.giudici@suse.com>pull/4240/head^2
parent
e4acc3e9ad
commit
2c2fe01cf9
Binary file not shown.
Binary file not shown.
|
@ -0,0 +1,11 @@
|
||||||
|
annotations:
|
||||||
|
catalog.cattle.io/certified: rancher
|
||||||
|
catalog.cattle.io/hidden: "true"
|
||||||
|
catalog.cattle.io/namespace: cattle-elemental-system
|
||||||
|
catalog.cattle.io/release-name: elemental-operator-crds
|
||||||
|
apiVersion: v2
|
||||||
|
appVersion: 1.5.4
|
||||||
|
description: A Helm chart for deploying Rancher Elemental Operator CRDs
|
||||||
|
name: elemental-crd
|
||||||
|
type: application
|
||||||
|
version: 104.1.1+up1.5.4
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,6 @@
|
||||||
|
{{- $inventoryCRD := lookup "apiextensions.k8s.io/v1" "CustomResourceDefinition" .Release.Namespace "machineinventories.elemental.cattle.io" -}}
|
||||||
|
{{- if $inventoryCRD -}}
|
||||||
|
{{- if $inventoryCRD.metadata.deletionTimestamp -}}
|
||||||
|
{{- required "CRDs from previous installations are pending to be removed (deletionTimestamp is set). Fully deleting them before (re-)installing is required" "" -}}
|
||||||
|
{{- end -}}
|
||||||
|
{{- end -}}
|
|
@ -0,0 +1,20 @@
|
||||||
|
annotations:
|
||||||
|
catalog.cattle.io/auto-install: elemental-crd=match
|
||||||
|
catalog.cattle.io/certified: rancher
|
||||||
|
catalog.cattle.io/display-name: Elemental
|
||||||
|
catalog.cattle.io/kube-version: '>= 1.23.0-0'
|
||||||
|
catalog.cattle.io/namespace: cattle-elemental-system
|
||||||
|
catalog.cattle.io/os: linux
|
||||||
|
catalog.cattle.io/permits-os: linux
|
||||||
|
catalog.cattle.io/provides-gvr: elemental.cattle.io/v1beta1
|
||||||
|
catalog.cattle.io/rancher-version: '>= 2.9.0-0 < 2.10.0-0'
|
||||||
|
catalog.cattle.io/release-name: elemental-operator
|
||||||
|
catalog.cattle.io/scope: management
|
||||||
|
catalog.cattle.io/type: cluster-tool
|
||||||
|
catalog.cattle.io/upstream-version: 1.5.4
|
||||||
|
apiVersion: v2
|
||||||
|
appVersion: 1.5.4
|
||||||
|
description: Elemental provides Cloud Native OS Management for Cluster Nodes.
|
||||||
|
icon: https://raw.githubusercontent.com/rancher/elemental/main/logo/icon-elemental.svg
|
||||||
|
name: elemental
|
||||||
|
version: 104.1.1+up1.5.4
|
|
@ -0,0 +1,5 @@
|
||||||
|
# Elemental Operator Helm Chart
|
||||||
|
|
||||||
|
This chart bootstraps an elemental-operator deployment on a [Rancher Manager](https://rancher.com/docs/rancher/) cluster using the [Helm](https://helm.sh) package manager.
|
||||||
|
|
||||||
|
Check out the [Elemental Operator Helm Chart documentation](https://elemental.docs.rancher.com/elementaloperatorchart-reference/) in the official [Elemental guide](https://elemental.docs.rancher.com/).
|
|
@ -0,0 +1,5 @@
|
||||||
|
# Elemental
|
||||||
|
|
||||||
|
Elemental brings to Rancher the ability to install and manage the OS of bare metal and virtualized machines.
|
||||||
|
|
||||||
|
For more information on how to deploy an Elemental Cluster, follow the [official documentation](https://elemental.docs.rancher.com/).
|
|
@ -0,0 +1,27 @@
|
||||||
|
questions:
|
||||||
|
- variable: channel.defaultChannel
|
||||||
|
default: "true"
|
||||||
|
description: "Provide an Elemental OS Channel container image"
|
||||||
|
label: Elemental OS Channel
|
||||||
|
type: boolean
|
||||||
|
show_subquestion_if: true
|
||||||
|
group: "Elemental OS Channel"
|
||||||
|
subquestions:
|
||||||
|
- variable: channel.image
|
||||||
|
default: "registry.suse.com/rancher/elemental-channel"
|
||||||
|
description: "Specify the Elemental OS channel: for air-gapped scenarios you need to provide your own OS channel image (see https://elemental.docs.rancher.com/airgap for detailed instructions)"
|
||||||
|
type: string
|
||||||
|
label: Elemental OS Channel Image
|
||||||
|
group: "Elemental OS Channel"
|
||||||
|
- variable: channel.tag
|
||||||
|
default: "1.5.4"
|
||||||
|
description: "Specify Elemental OS channel image tag"
|
||||||
|
type: string
|
||||||
|
label: "Elemental OS Channel Tag"
|
||||||
|
group: "Elemental OS Channel"
|
||||||
|
- variable: debug
|
||||||
|
default: "false"
|
||||||
|
description: "Enable debug logging in the Elemental operator"
|
||||||
|
type: boolean
|
||||||
|
label: "Enable Debug Logging"
|
||||||
|
group: "Logging"
|
|
@ -0,0 +1,17 @@
|
||||||
|
{{- define "system_default_registry" -}}
|
||||||
|
{{- if .Values.global.cattle.systemDefaultRegistry -}}
|
||||||
|
{{- printf "%s/" .Values.global.cattle.systemDefaultRegistry -}}
|
||||||
|
{{- else -}}
|
||||||
|
{{- "" -}}
|
||||||
|
{{- end -}}
|
||||||
|
{{- end -}}
|
||||||
|
|
||||||
|
{{- define "registry_url" -}}
|
||||||
|
{{- if .Values.global.cattle.systemDefaultRegistry -}}
|
||||||
|
{{ include "system_default_registry" . }}
|
||||||
|
{{- else if .Values.registryUrl -}}
|
||||||
|
{{- printf "%s/" .Values.registryUrl -}}
|
||||||
|
{{- else -}}
|
||||||
|
{{- "" -}}
|
||||||
|
{{- end -}}
|
||||||
|
{{- end -}}
|
|
@ -0,0 +1,9 @@
|
||||||
|
kind: APIService
|
||||||
|
apiVersion: management.cattle.io/v3
|
||||||
|
metadata:
|
||||||
|
name: {{ .Release.Name }}
|
||||||
|
spec:
|
||||||
|
secretName: elemental-operator
|
||||||
|
secretNamespace: {{ .Release.Namespace }}
|
||||||
|
pathPrefixes:
|
||||||
|
- /elemental/
|
|
@ -0,0 +1,10 @@
|
||||||
|
apiVersion: rbac.authorization.k8s.io/v1
|
||||||
|
kind: ClusterRole
|
||||||
|
metadata:
|
||||||
|
name: elemental-capi-role
|
||||||
|
labels:
|
||||||
|
cluster.x-k8s.io/aggregate-to-manager: "true"
|
||||||
|
rules:
|
||||||
|
- apiGroups: ["elemental.cattle.io"]
|
||||||
|
resources: ["*"]
|
||||||
|
verbs: ["*"]
|
|
@ -0,0 +1,11 @@
|
||||||
|
{{ if and .Values.channel .Values.channel.image .Values.channel.tag }}
|
||||||
|
apiVersion: elemental.cattle.io/v1beta1
|
||||||
|
kind: ManagedOSVersionChannel
|
||||||
|
metadata:
|
||||||
|
name: elemental-channel
|
||||||
|
namespace: fleet-default
|
||||||
|
spec:
|
||||||
|
options:
|
||||||
|
image: {{ .Values.channel.image }}:{{ .Values.channel.tag }}
|
||||||
|
type: custom
|
||||||
|
{{ end }}
|
|
@ -0,0 +1,267 @@
|
||||||
|
apiVersion: rbac.authorization.k8s.io/v1
|
||||||
|
kind: ClusterRole
|
||||||
|
metadata:
|
||||||
|
name: '{{ .Release.Name }}'
|
||||||
|
rules:
|
||||||
|
- apiGroups:
|
||||||
|
- ""
|
||||||
|
resources:
|
||||||
|
- configmaps
|
||||||
|
verbs:
|
||||||
|
- create
|
||||||
|
- delete
|
||||||
|
- get
|
||||||
|
- list
|
||||||
|
- patch
|
||||||
|
- update
|
||||||
|
- watch
|
||||||
|
- apiGroups:
|
||||||
|
- ""
|
||||||
|
resources:
|
||||||
|
- events
|
||||||
|
verbs:
|
||||||
|
- create
|
||||||
|
- patch
|
||||||
|
- apiGroups:
|
||||||
|
- ""
|
||||||
|
resources:
|
||||||
|
- pods
|
||||||
|
verbs:
|
||||||
|
- create
|
||||||
|
- delete
|
||||||
|
- get
|
||||||
|
- list
|
||||||
|
- patch
|
||||||
|
- update
|
||||||
|
- watch
|
||||||
|
- apiGroups:
|
||||||
|
- ""
|
||||||
|
resources:
|
||||||
|
- pods/log
|
||||||
|
verbs:
|
||||||
|
- get
|
||||||
|
- apiGroups:
|
||||||
|
- ""
|
||||||
|
resources:
|
||||||
|
- pods/status
|
||||||
|
verbs:
|
||||||
|
- get
|
||||||
|
- apiGroups:
|
||||||
|
- ""
|
||||||
|
resources:
|
||||||
|
- secrets
|
||||||
|
verbs:
|
||||||
|
- create
|
||||||
|
- delete
|
||||||
|
- get
|
||||||
|
- list
|
||||||
|
- patch
|
||||||
|
- update
|
||||||
|
- watch
|
||||||
|
- apiGroups:
|
||||||
|
- ""
|
||||||
|
resources:
|
||||||
|
- serviceaccounts
|
||||||
|
verbs:
|
||||||
|
- create
|
||||||
|
- delete
|
||||||
|
- get
|
||||||
|
- list
|
||||||
|
- watch
|
||||||
|
- apiGroups:
|
||||||
|
- ""
|
||||||
|
resources:
|
||||||
|
- services
|
||||||
|
verbs:
|
||||||
|
- create
|
||||||
|
- delete
|
||||||
|
- get
|
||||||
|
- list
|
||||||
|
- patch
|
||||||
|
- update
|
||||||
|
- watch
|
||||||
|
- apiGroups:
|
||||||
|
- ""
|
||||||
|
resources:
|
||||||
|
- services/status
|
||||||
|
verbs:
|
||||||
|
- get
|
||||||
|
- apiGroups:
|
||||||
|
- cluster.x-k8s.io
|
||||||
|
resources:
|
||||||
|
- machines
|
||||||
|
verbs:
|
||||||
|
- get
|
||||||
|
- list
|
||||||
|
- watch
|
||||||
|
- apiGroups:
|
||||||
|
- elemental.cattle.io
|
||||||
|
resources:
|
||||||
|
- machineinventories
|
||||||
|
verbs:
|
||||||
|
- create
|
||||||
|
- delete
|
||||||
|
- get
|
||||||
|
- list
|
||||||
|
- patch
|
||||||
|
- update
|
||||||
|
- watch
|
||||||
|
- apiGroups:
|
||||||
|
- elemental.cattle.io
|
||||||
|
resources:
|
||||||
|
- machineinventories/status
|
||||||
|
verbs:
|
||||||
|
- get
|
||||||
|
- patch
|
||||||
|
- update
|
||||||
|
- apiGroups:
|
||||||
|
- elemental.cattle.io
|
||||||
|
resources:
|
||||||
|
- machineinventoryselectors
|
||||||
|
verbs:
|
||||||
|
- create
|
||||||
|
- delete
|
||||||
|
- get
|
||||||
|
- list
|
||||||
|
- patch
|
||||||
|
- update
|
||||||
|
- watch
|
||||||
|
- apiGroups:
|
||||||
|
- elemental.cattle.io
|
||||||
|
resources:
|
||||||
|
- machineinventoryselectors/status
|
||||||
|
verbs:
|
||||||
|
- get
|
||||||
|
- list
|
||||||
|
- patch
|
||||||
|
- update
|
||||||
|
- apiGroups:
|
||||||
|
- elemental.cattle.io
|
||||||
|
resources:
|
||||||
|
- machineregistrations
|
||||||
|
verbs:
|
||||||
|
- create
|
||||||
|
- delete
|
||||||
|
- get
|
||||||
|
- list
|
||||||
|
- patch
|
||||||
|
- update
|
||||||
|
- watch
|
||||||
|
- apiGroups:
|
||||||
|
- elemental.cattle.io
|
||||||
|
resources:
|
||||||
|
- machineregistrations/status
|
||||||
|
verbs:
|
||||||
|
- get
|
||||||
|
- patch
|
||||||
|
- update
|
||||||
|
- apiGroups:
|
||||||
|
- elemental.cattle.io
|
||||||
|
resources:
|
||||||
|
- managedosimages
|
||||||
|
verbs:
|
||||||
|
- create
|
||||||
|
- delete
|
||||||
|
- get
|
||||||
|
- list
|
||||||
|
- patch
|
||||||
|
- update
|
||||||
|
- watch
|
||||||
|
- apiGroups:
|
||||||
|
- elemental.cattle.io
|
||||||
|
resources:
|
||||||
|
- managedosimages/status
|
||||||
|
verbs:
|
||||||
|
- get
|
||||||
|
- list
|
||||||
|
- patch
|
||||||
|
- update
|
||||||
|
- apiGroups:
|
||||||
|
- elemental.cattle.io
|
||||||
|
resources:
|
||||||
|
- managedosversionchannels
|
||||||
|
verbs:
|
||||||
|
- create
|
||||||
|
- delete
|
||||||
|
- get
|
||||||
|
- list
|
||||||
|
- patch
|
||||||
|
- update
|
||||||
|
- watch
|
||||||
|
- apiGroups:
|
||||||
|
- elemental.cattle.io
|
||||||
|
resources:
|
||||||
|
- managedosversionchannels/status
|
||||||
|
verbs:
|
||||||
|
- get
|
||||||
|
- list
|
||||||
|
- patch
|
||||||
|
- update
|
||||||
|
- apiGroups:
|
||||||
|
- elemental.cattle.io
|
||||||
|
resources:
|
||||||
|
- managedosversions
|
||||||
|
verbs:
|
||||||
|
- create
|
||||||
|
- delete
|
||||||
|
- get
|
||||||
|
- list
|
||||||
|
- patch
|
||||||
|
- update
|
||||||
|
- watch
|
||||||
|
- apiGroups:
|
||||||
|
- elemental.cattle.io
|
||||||
|
resources:
|
||||||
|
- managedosversions/status
|
||||||
|
verbs:
|
||||||
|
- get
|
||||||
|
- patch
|
||||||
|
- update
|
||||||
|
- apiGroups:
|
||||||
|
- elemental.cattle.io
|
||||||
|
resources:
|
||||||
|
- seedimages
|
||||||
|
verbs:
|
||||||
|
- create
|
||||||
|
- delete
|
||||||
|
- get
|
||||||
|
- list
|
||||||
|
- patch
|
||||||
|
- update
|
||||||
|
- watch
|
||||||
|
- apiGroups:
|
||||||
|
- elemental.cattle.io
|
||||||
|
resources:
|
||||||
|
- seedimages/status
|
||||||
|
verbs:
|
||||||
|
- get
|
||||||
|
- patch
|
||||||
|
- update
|
||||||
|
- apiGroups:
|
||||||
|
- fleet.cattle.io
|
||||||
|
resources:
|
||||||
|
- bundles
|
||||||
|
verbs:
|
||||||
|
- create
|
||||||
|
- get
|
||||||
|
- list
|
||||||
|
- update
|
||||||
|
- watch
|
||||||
|
- apiGroups:
|
||||||
|
- management.cattle.io
|
||||||
|
resources:
|
||||||
|
- settings
|
||||||
|
verbs:
|
||||||
|
- get
|
||||||
|
- list
|
||||||
|
- watch
|
||||||
|
- apiGroups:
|
||||||
|
- rbac.authorization.k8s.io
|
||||||
|
resources:
|
||||||
|
- rolebindings
|
||||||
|
- roles
|
||||||
|
verbs:
|
||||||
|
- create
|
||||||
|
- delete
|
||||||
|
- list
|
||||||
|
- watch
|
|
@ -0,0 +1,13 @@
|
||||||
|
apiVersion: rbac.authorization.k8s.io/v1
|
||||||
|
kind: ClusterRoleBinding
|
||||||
|
metadata:
|
||||||
|
name: {{ .Release.Name }}
|
||||||
|
roleRef:
|
||||||
|
apiGroup: rbac.authorization.k8s.io
|
||||||
|
kind: ClusterRole
|
||||||
|
name: {{ .Release.Name }}
|
||||||
|
subjects:
|
||||||
|
- kind: ServiceAccount
|
||||||
|
name: {{ .Release.Name }}
|
||||||
|
namespace: {{.Release.Namespace}}
|
||||||
|
|
|
@ -0,0 +1,50 @@
|
||||||
|
apiVersion: apps/v1
|
||||||
|
kind: Deployment
|
||||||
|
metadata:
|
||||||
|
name: {{ .Release.Name }}
|
||||||
|
spec:
|
||||||
|
replicas: {{ .Values.replicas }}
|
||||||
|
selector:
|
||||||
|
matchLabels:
|
||||||
|
app: elemental-operator
|
||||||
|
template:
|
||||||
|
metadata:
|
||||||
|
labels:
|
||||||
|
app: elemental-operator
|
||||||
|
spec:
|
||||||
|
containers:
|
||||||
|
- env:
|
||||||
|
- name: NO_PROXY
|
||||||
|
value: {{ .Values.noProxy }}
|
||||||
|
{{- if .Values.proxy }}
|
||||||
|
- name: HTTP_PROXY
|
||||||
|
value: {{ .Values.proxy }}
|
||||||
|
- name: HTTPS_PROXY
|
||||||
|
value: {{ .Values.proxy }}
|
||||||
|
{{- end }}
|
||||||
|
name: {{ .Release.Name }}
|
||||||
|
imagePullPolicy: "{{ .Values.image.imagePullPolicy }}"
|
||||||
|
image: {{ template "registry_url" . }}{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}
|
||||||
|
args:
|
||||||
|
- operator
|
||||||
|
{{- if .Values.debug }}
|
||||||
|
- --v=5
|
||||||
|
- --debug
|
||||||
|
{{- end }}
|
||||||
|
- --namespace
|
||||||
|
- {{ .Release.Namespace }}
|
||||||
|
- --operator-image
|
||||||
|
- {{ template "registry_url" . }}{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}
|
||||||
|
- --seedimage-image
|
||||||
|
- {{ template "registry_url" . }}{{ .Values.seedImage.repository }}:{{ .Values.seedImage.tag | default .Chart.AppVersion }}
|
||||||
|
- --seedimage-image-pullpolicy
|
||||||
|
- {{ .Values.seedImage.imagePullPolicy}}
|
||||||
|
serviceAccountName: {{ .Release.Name }}
|
||||||
|
{{- with .Values.tolerations }}
|
||||||
|
tolerations:
|
||||||
|
{{- toYaml . | nindent 8 }}
|
||||||
|
{{- end }}
|
||||||
|
{{- with .Values.nodeSelector }}
|
||||||
|
nodeSelector:
|
||||||
|
{{- toYaml . | nindent 8 }}
|
||||||
|
{{- end }}
|
|
@ -0,0 +1,16 @@
|
||||||
|
apiVersion: management.cattle.io/v3
|
||||||
|
builtin: false
|
||||||
|
description: "Elemental Administrator Role"
|
||||||
|
displayName: Elemental Administrator
|
||||||
|
kind: GlobalRole
|
||||||
|
metadata:
|
||||||
|
labels:
|
||||||
|
cattle.io/creator: norman
|
||||||
|
name: {{ .Release.Name }}
|
||||||
|
rules:
|
||||||
|
- apiGroups:
|
||||||
|
- elemental.cattle.io
|
||||||
|
resources:
|
||||||
|
- '*'
|
||||||
|
verbs:
|
||||||
|
- '*'
|
|
@ -0,0 +1,4 @@
|
||||||
|
apiVersion: v1
|
||||||
|
kind: ServiceAccount
|
||||||
|
metadata:
|
||||||
|
name: {{ .Release.Name }}
|
|
@ -0,0 +1,25 @@
|
||||||
|
{{ if gt (len (lookup "rbac.authorization.k8s.io/v1" "ClusterRole" "" "")) 0 }}
|
||||||
|
{{ $apis := dict
|
||||||
|
"elemental.cattle.io/v1beta1/MachineInventory" "machineinventories"
|
||||||
|
"elemental.cattle.io/v1beta1/MachineInventorySelector" "machineinventoryselectors"
|
||||||
|
"elemental.cattle.io/v1beta1/MachineInventorySelectorTemplate" "machineinventoryselectortemplates"
|
||||||
|
"elemental.cattle.io/v1beta1/MachineRegistration" "machineregistrations"
|
||||||
|
"elemental.cattle.io/v1beta1/ManagedOSImage" "managedosimages"
|
||||||
|
"elemental.cattle.io/v1beta1/ManagedOSVersionChannel" "managedosversionchannels"
|
||||||
|
"elemental.cattle.io/v1beta1/ManagedOSVersion" "managedosversions"
|
||||||
|
"elemental.cattle.io/v1beta1/SeedImage" "seedimages"
|
||||||
|
}}
|
||||||
|
{{- range $api, $crd := $apis -}}
|
||||||
|
{{- if not ($.Capabilities.APIVersions.Has $api) -}}
|
||||||
|
{{- required "Required CRDs are missing. Please install the corresponding CRD chart before installing this chart." "" -}}
|
||||||
|
{{- end -}}
|
||||||
|
{{- $crdobj := lookup "apiextensions.k8s.io/v1" "CustomResourceDefinition" "" (print $crd ".elemental.cattle.io") -}}
|
||||||
|
{{- if not $crdobj -}}
|
||||||
|
{{- print "Cannot lookup " $crd ".elemental.cattle.io crd object" | fail -}}
|
||||||
|
{{- end -}}
|
||||||
|
{{- $crdrelease := index $crdobj.metadata.annotations "meta.helm.sh/release-name" -}}
|
||||||
|
{{- if eq $crdrelease $.Release.Name -}}
|
||||||
|
{{- required "Elemental CRDs should be moved to the new elemental-operator-crds chart before upgrading this operator." "" -}}
|
||||||
|
{{- end -}}
|
||||||
|
{{- end -}}
|
||||||
|
{{- end -}}
|
|
@ -0,0 +1,42 @@
|
||||||
|
image:
|
||||||
|
empty: rancher/pause:3.1
|
||||||
|
repository: "rancher/mirrored-elemental-operator"
|
||||||
|
tag: "1.5.4"
|
||||||
|
imagePullPolicy: IfNotPresent
|
||||||
|
|
||||||
|
seedImage:
|
||||||
|
repository: "rancher/mirrored-elemental-seedimage-builder"
|
||||||
|
tag: "1.5.4"
|
||||||
|
imagePullPolicy: IfNotPresent
|
||||||
|
|
||||||
|
channel:
|
||||||
|
image: "registry.suse.com/rancher/elemental-channel"
|
||||||
|
tag: "1.5.4"
|
||||||
|
|
||||||
|
# number of operator replicas to deploy
|
||||||
|
replicas: 1
|
||||||
|
|
||||||
|
# http[s] proxy server
|
||||||
|
# proxy: http://<username>@<password>:<url>:<port>
|
||||||
|
|
||||||
|
# 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
|
||||||
|
|
||||||
|
global:
|
||||||
|
cattle:
|
||||||
|
systemDefaultRegistry: ""
|
||||||
|
|
||||||
|
# used only if systemDefaultRegistry is empty
|
||||||
|
registryUrl: ""
|
||||||
|
|
||||||
|
# enable debug output for operator
|
||||||
|
debug: false
|
||||||
|
|
||||||
|
nodeSelector:
|
||||||
|
kubernetes.io/os: linux
|
||||||
|
|
||||||
|
tolerations:
|
||||||
|
- key: cattle.io/os
|
||||||
|
operator: "Equal"
|
||||||
|
value: "linux"
|
||||||
|
effect: NoSchedule
|
39
index.yaml
39
index.yaml
|
@ -1,6 +1,30 @@
|
||||||
apiVersion: v1
|
apiVersion: v1
|
||||||
entries:
|
entries:
|
||||||
elemental:
|
elemental:
|
||||||
|
- annotations:
|
||||||
|
catalog.cattle.io/auto-install: elemental-crd=match
|
||||||
|
catalog.cattle.io/certified: rancher
|
||||||
|
catalog.cattle.io/display-name: Elemental
|
||||||
|
catalog.cattle.io/kube-version: '>= 1.23.0-0'
|
||||||
|
catalog.cattle.io/namespace: cattle-elemental-system
|
||||||
|
catalog.cattle.io/os: linux
|
||||||
|
catalog.cattle.io/permits-os: linux
|
||||||
|
catalog.cattle.io/provides-gvr: elemental.cattle.io/v1beta1
|
||||||
|
catalog.cattle.io/rancher-version: '>= 2.9.0-0 < 2.10.0-0'
|
||||||
|
catalog.cattle.io/release-name: elemental-operator
|
||||||
|
catalog.cattle.io/scope: management
|
||||||
|
catalog.cattle.io/type: cluster-tool
|
||||||
|
catalog.cattle.io/upstream-version: 1.5.4
|
||||||
|
apiVersion: v2
|
||||||
|
appVersion: 1.5.4
|
||||||
|
created: "2024-07-16T15:27:30.568221113+02:00"
|
||||||
|
description: Elemental provides Cloud Native OS Management for Cluster Nodes.
|
||||||
|
digest: 7be085248cee16a0063bbc71a6dbb944b64b3f4adb9562dc5c8ac7aec3ae9970
|
||||||
|
icon: https://raw.githubusercontent.com/rancher/elemental/main/logo/icon-elemental.svg
|
||||||
|
name: elemental
|
||||||
|
urls:
|
||||||
|
- assets/elemental/elemental-104.1.1+up1.5.4.tgz
|
||||||
|
version: 104.1.1+up1.5.4
|
||||||
- annotations:
|
- annotations:
|
||||||
catalog.cattle.io/auto-install: elemental-crd=match
|
catalog.cattle.io/auto-install: elemental-crd=match
|
||||||
catalog.cattle.io/certified: rancher
|
catalog.cattle.io/certified: rancher
|
||||||
|
@ -146,6 +170,21 @@ entries:
|
||||||
- assets/elemental/elemental-103.0.0+up1.3.4.tgz
|
- assets/elemental/elemental-103.0.0+up1.3.4.tgz
|
||||||
version: 103.0.0+up1.3.4
|
version: 103.0.0+up1.3.4
|
||||||
elemental-crd:
|
elemental-crd:
|
||||||
|
- annotations:
|
||||||
|
catalog.cattle.io/certified: rancher
|
||||||
|
catalog.cattle.io/hidden: "true"
|
||||||
|
catalog.cattle.io/namespace: cattle-elemental-system
|
||||||
|
catalog.cattle.io/release-name: elemental-operator-crds
|
||||||
|
apiVersion: v2
|
||||||
|
appVersion: 1.5.4
|
||||||
|
created: "2024-07-16T15:27:32.438822068+02:00"
|
||||||
|
description: A Helm chart for deploying Rancher Elemental Operator CRDs
|
||||||
|
digest: d0bd3df24e111267053b3f5270bb04e4ea1db59269f254bb4aaefb95bff51b60
|
||||||
|
name: elemental-crd
|
||||||
|
type: application
|
||||||
|
urls:
|
||||||
|
- assets/elemental-crd/elemental-crd-104.1.1+up1.5.4.tgz
|
||||||
|
version: 104.1.1+up1.5.4
|
||||||
- annotations:
|
- annotations:
|
||||||
catalog.cattle.io/certified: rancher
|
catalog.cattle.io/certified: rancher
|
||||||
catalog.cattle.io/hidden: "true"
|
catalog.cattle.io/hidden: "true"
|
||||||
|
|
|
@ -2,9 +2,9 @@
|
||||||
+++ charts/Chart.yaml
|
+++ charts/Chart.yaml
|
||||||
@@ -6,5 +6,6 @@
|
@@ -6,5 +6,6 @@
|
||||||
apiVersion: v2
|
apiVersion: v2
|
||||||
appVersion: 1.5.3
|
appVersion: 1.5.4
|
||||||
description: A Helm chart for deploying Rancher Elemental Operator CRDs
|
description: A Helm chart for deploying Rancher Elemental Operator CRDs
|
||||||
-name: elemental-operator-crds
|
-name: elemental-operator-crds
|
||||||
+name: elemental-crd
|
+name: elemental-crd
|
||||||
+type: application
|
+type: application
|
||||||
version: 1.5.3
|
version: 1.5.4
|
||||||
|
|
|
@ -1,2 +1,2 @@
|
||||||
url: oci://registry.suse.com/rancher/elemental-operator-crds-chart:1.5.3
|
url: oci://registry.suse.com/rancher/elemental-operator-crds-chart:1.5.4
|
||||||
version: 104.1.0
|
version: 104.1.1
|
||||||
|
|
|
@ -17,11 +17,11 @@
|
||||||
catalog.cattle.io/scope: management
|
catalog.cattle.io/scope: management
|
||||||
catalog.cattle.io/type: cluster-tool
|
catalog.cattle.io/type: cluster-tool
|
||||||
- catalog.cattle.io/upstream-version: '%VERSION'
|
- catalog.cattle.io/upstream-version: '%VERSION'
|
||||||
+ catalog.cattle.io/upstream-version: 1.5.3
|
+ catalog.cattle.io/upstream-version: 1.5.4
|
||||||
apiVersion: v2
|
apiVersion: v2
|
||||||
appVersion: 1.5.3
|
appVersion: 1.5.4
|
||||||
description: Elemental provides Cloud Native OS Management for Cluster Nodes.
|
description: Elemental provides Cloud Native OS Management for Cluster Nodes.
|
||||||
icon: https://raw.githubusercontent.com/rancher/elemental/main/logo/icon-elemental.svg
|
icon: https://raw.githubusercontent.com/rancher/elemental/main/logo/icon-elemental.svg
|
||||||
-name: elemental-operator
|
-name: elemental-operator
|
||||||
+name: elemental
|
+name: elemental
|
||||||
version: 1.5.3
|
version: 1.5.4
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
group: "Elemental OS Channel"
|
group: "Elemental OS Channel"
|
||||||
- variable: channel.tag
|
- variable: channel.tag
|
||||||
- default: "%VERSION%"
|
- default: "%VERSION%"
|
||||||
+ default: "1.5.3"
|
+ default: "1.5.4"
|
||||||
description: "Specify Elemental OS channel image tag"
|
description: "Specify Elemental OS channel image tag"
|
||||||
type: string
|
type: string
|
||||||
label: "Elemental OS Channel Tag"
|
label: "Elemental OS Channel Tag"
|
||||||
|
|
|
@ -5,13 +5,13 @@
|
||||||
empty: rancher/pause:3.1
|
empty: rancher/pause:3.1
|
||||||
- repository: "rancher/elemental-operator"
|
- repository: "rancher/elemental-operator"
|
||||||
+ repository: "rancher/mirrored-elemental-operator"
|
+ repository: "rancher/mirrored-elemental-operator"
|
||||||
tag: "1.5.3"
|
tag: "1.5.4"
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
|
|
||||||
seedImage:
|
seedImage:
|
||||||
- repository: "rancher/seedimage-builder"
|
- repository: "rancher/seedimage-builder"
|
||||||
+ repository: "rancher/mirrored-elemental-seedimage-builder"
|
+ repository: "rancher/mirrored-elemental-seedimage-builder"
|
||||||
tag: "1.5.3"
|
tag: "1.5.4"
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
|
|
||||||
@@ -27,7 +27,7 @@
|
@@ -27,7 +27,7 @@
|
||||||
|
|
|
@ -1,2 +1,2 @@
|
||||||
url: oci://registry.suse.com/rancher/elemental-operator-chart:1.5.3
|
url: oci://registry.suse.com/rancher/elemental-operator-chart:1.5.4
|
||||||
version: 104.1.0
|
version: 104.1.1
|
||||||
|
|
|
@ -4,12 +4,14 @@ elemental:
|
||||||
- 103.2.0+up1.4.3
|
- 103.2.0+up1.4.3
|
||||||
- 103.3.0+up1.5.3
|
- 103.3.0+up1.5.3
|
||||||
- 104.1.0+up1.5.3
|
- 104.1.0+up1.5.3
|
||||||
|
- 104.1.1+up1.5.4
|
||||||
elemental-crd:
|
elemental-crd:
|
||||||
- 103.1.0+up1.4.2
|
- 103.1.0+up1.4.2
|
||||||
- 104.0.0+up1.4.3
|
- 104.0.0+up1.4.3
|
||||||
- 103.2.0+up1.4.3
|
- 103.2.0+up1.4.3
|
||||||
- 103.3.0+up1.5.3
|
- 103.3.0+up1.5.3
|
||||||
- 104.1.0+up1.5.3
|
- 104.1.0+up1.5.3
|
||||||
|
- 104.1.1+up1.5.4
|
||||||
fleet:
|
fleet:
|
||||||
- 102.2.2+up0.8.2
|
- 102.2.2+up0.8.2
|
||||||
- 102.2.3+up0.8.3
|
- 102.2.3+up0.8.3
|
||||||
|
|
Loading…
Reference in New Issue