Skip to content

Commit

Permalink
Autogenerated changes for Fleet v0.10.0-rc.11
Browse files Browse the repository at this point in the history
  • Loading branch information
fleet-bot committed Apr 12, 2024
1 parent 339588e commit 551f24b
Show file tree
Hide file tree
Showing 40 changed files with 46 additions and 114 deletions.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed assets/fleet-crd/fleet-crd-104.0.0+up0.10.0-rc.4.tgz
Binary file not shown.
Binary file added assets/fleet/fleet-104.0.0+up0.10.0-rc.11.tgz
Binary file not shown.
Binary file removed assets/fleet/fleet-104.0.0+up0.10.0-rc.4.tgz
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ annotations:
catalog.cattle.io/rancher-version: '>= 2.9.0-0 < 2.10.0-0'
catalog.cattle.io/release-name: fleet-agent
apiVersion: v2
appVersion: 0.10.0-rc.4
appVersion: 0.10.0-rc.11
description: Fleet Manager Agent - GitOps at Scale
icon: https://charts.rancher.io/assets/logos/fleet.svg
name: fleet-agent
version: 104.0.0+up0.10.0-rc.4
version: 104.0.0+up0.10.0-rc.11
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
image:
os: "windows,linux"
repository: rancher/fleet-agent
tag: v0.10.0-rc.4
tag: v0.10.0-rc.11

# The public URL of the Kubernetes API server running the Fleet Manager must be set here
# Example: https://example.com:6443
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ annotations:
catalog.cattle.io/permits-os: linux,windows
catalog.cattle.io/release-name: fleet-crd
apiVersion: v2
appVersion: 0.10.0-rc.4
appVersion: 0.10.0-rc.11
description: Fleet Manager CustomResourceDefinitions
icon: https://charts.rancher.io/assets/logos/fleet.svg
name: fleet-crd
version: 104.0.0+up0.10.0-rc.4
version: 104.0.0+up0.10.0-rc.11
Original file line number Diff line number Diff line change
Expand Up @@ -3626,12 +3626,6 @@ spec:
- 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
Expand Down Expand Up @@ -5109,29 +5103,6 @@ spec:
e.g. "cattle-fleet-system".
nullable: true
type: string
nonReadyNodeNames:
description: 'NonReadyNode contains the names of non-ready nodes.
The list is
limited to at most 3 names.'
items:
type: string
type: array
nonReadyNodes:
description: NonReadyNodes is the number of nodes that are not
ready.
type: integer
readyNodeNames:
description: 'ReadyNodes contains the names of ready nodes.
The list is limited to
at most 3 names.'
items:
type: string
type: array
readyNodes:
description: ReadyNodes is the number of nodes that are ready.
type: integer
type: object
agentAffinityHash:
description: 'AgentAffinityHash is a hash of the agent''s affinity
Expand Down Expand Up @@ -5260,19 +5231,6 @@ spec:
to be ready.'
type: string
readyNodes:
description: 'ReadyNodes is a string in the form "%d/%d", that
describes the
number of nodes that are ready vs. the number of expected
nodes.'
type: string
sampleNode:
description: 'SampleNode is the name of one of the nodes that
are ready. If no
node is ready, it''s the name of a node that is not ready.'
type: string
state:
description: State of the cluster, either one of the bundle
states, or "WaitCheckIn".
Expand Down Expand Up @@ -5779,6 +5737,10 @@ spec:
in the helm history.
type: boolean
type: object
disablePolling:
description: Disables git polling. When enabled only webhooks will
be used.
type: boolean
forceSyncGeneration:
description: Increment this number to force a redeployment of contents
from Git.
Expand Down
Binary file added charts/fleet/104.0.0+up0.10.0-rc.11/._Chart.yaml
Binary file not shown.
Binary file added charts/fleet/104.0.0+up0.10.0-rc.11/._README.md
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ annotations:
catalog.cattle.io/rancher-version: '>= 2.9.0-0 < 2.10.0-0'
catalog.cattle.io/release-name: fleet
apiVersion: v2
appVersion: 0.10.0-rc.4
appVersion: 0.10.0-rc.11
description: Fleet Manager - GitOps at Scale
icon: https://charts.rancher.io/assets/logos/fleet.svg
name: fleet
version: 104.0.0+up0.10.0-rc.4
version: 104.0.0+up0.10.0-rc.11
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ spec:
spec:
serviceAccountName: gitjob
containers:
- image: "{{ template "system_default_registry" . }}{{ .Values.gitjob.repository }}:{{ .Values.gitjob.tag }}"
- image: "{{ template "system_default_registry" . }}{{ .Values.image.repository }}:{{ .Values.image.tag }}"
name: gitjob
args:
- gitjob
- --gitjob-image
- "{{ template "system_default_registry" . }}{{ .Values.gitjob.repository }}:{{ .Values.gitjob.tag }}"
- "{{ template "system_default_registry" . }}{{ .Values.image.repository }}:{{ .Values.image.tag }}"
{{- if .Values.debug }}
- --debug
{{- end }}
Expand All @@ -40,15 +40,22 @@ spec:
- name: CATTLE_DEV_MODE
value: "true"
{{- end }}
{{- with .Values.gitjob.tolerations }}
tolerations:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.gitjob.nodeSelector }}
nodeSelector:
{{- toYaml . | nindent 8 }}
{{- end }}
nodeSelector: {{ include "linux-node-selector" . | nindent 8 }}
{{- if .Values.nodeSelector }}
{{ toYaml .Values.nodeSelector | indent 8 }}
{{- end }}
tolerations: {{ include "linux-node-tolerations" . | nindent 8 }}
{{- if .Values.tolerations }}
{{ toYaml .Values.tolerations | indent 8 }}
{{- end }}
{{- if .Values.priorityClassName }}
priorityClassName: "{{.Values.priorityClassName}}"
{{- end }}
{{- end }}

{{- if not .Values.debug }}
securityContext:
runAsNonRoot: true
runAsUser: 1000
runAsGroup: 1000
{{- end }}
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ spec:
runAsUser: 1000
containers:
- name: cleanup
image: "{{ template "system_default_registry" . }}{{.Values.agentImage.repository}}:{{.Values.agentImage.tag}}"
image: "{{ template "system_default_registry" . }}{{.Values.image.repository}}:{{.Values.image.tag}}"
imagePullPolicy: {{ .Values.global.imagePullPolicy }}
securityContext:
allowPrivilegeEscalation: false
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
image:
repository: rancher/fleet
tag: v0.10.0-rc.4
tag: v0.10.0-rc.11
imagePullPolicy: IfNotPresent

agentImage:
repository: rancher/fleet-agent
tag: v0.10.0-rc.4
tag: v0.10.0-rc.11
imagePullPolicy: IfNotPresent

# For cluster registration the public URL of the Kubernetes API server must be set here
Expand Down Expand Up @@ -87,16 +87,3 @@ leaderElection:
leaseDuration: 30s
retryPeriod: 10s
renewDeadline: 25s

gitjob:
repository: rancher/gitjob
tag: v0.10.0-rc.4
imagePullPolicy: IfNotPresent
nodeSelector:
kubernetes.io/os: linux

tolerations:
- key: cattle.io/os
operator: "Equal"
value: "linux"
effect: NoSchedule
54 changes: 15 additions & 39 deletions index.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -94,15 +94,15 @@ entries:
catalog.cattle.io/rancher-version: '>= 2.9.0-0 < 2.10.0-0'
catalog.cattle.io/release-name: fleet
apiVersion: v2
appVersion: 0.10.0-rc.4
created: "2024-03-04T18:09:26.924658211+01:00"
appVersion: 0.10.0-rc.11
created: "2024-04-12T12:48:36.030988395Z"
description: Fleet Manager - GitOps at Scale
digest: f507b485e0ba54dce8bc42568620d68b05ffdd1604e64dd3f6af13202aea8925
digest: b65f95397ccb1797da210892552ed8a50bac93795ef5e2faafdaf80b4a237254
icon: https://charts.rancher.io/assets/logos/fleet.svg
name: fleet
urls:
- assets/fleet/fleet-104.0.0+up0.10.0-rc.4.tgz
version: 104.0.0+up0.10.0-rc.4
- assets/fleet/fleet-104.0.0+up0.10.0-rc.11.tgz
version: 104.0.0+up0.10.0-rc.11
- annotations:
catalog.cattle.io/auto-install: fleet-crd=match
catalog.cattle.io/certified: rancher
Expand Down Expand Up @@ -819,15 +819,15 @@ entries:
catalog.cattle.io/rancher-version: '>= 2.9.0-0 < 2.10.0-0'
catalog.cattle.io/release-name: fleet-agent
apiVersion: v2
appVersion: 0.10.0-rc.4
created: "2024-03-04T18:09:28.776315552+01:00"
appVersion: 0.10.0-rc.11
created: "2024-04-12T12:48:37.98082305Z"
description: Fleet Manager Agent - GitOps at Scale
digest: 06b75efc4a26ca3a560aa69765084a7ef9a9bf0510a51f78cadd6ca7dc6b27af
digest: 480f15bcc19d596dca8479089924b57d403d72a0d5a2730969db03d0ec1dc0e8
icon: https://charts.rancher.io/assets/logos/fleet.svg
name: fleet-agent
urls:
- assets/fleet-agent/fleet-agent-104.0.0+up0.10.0-rc.4.tgz
version: 104.0.0+up0.10.0-rc.4
- assets/fleet-agent/fleet-agent-104.0.0+up0.10.0-rc.11.tgz
version: 104.0.0+up0.10.0-rc.11
- annotations:
catalog.cattle.io/certified: rancher
catalog.cattle.io/hidden: "true"
Expand Down Expand Up @@ -1363,15 +1363,15 @@ entries:
catalog.cattle.io/permits-os: linux,windows
catalog.cattle.io/release-name: fleet-crd
apiVersion: v2
appVersion: 0.10.0-rc.4
created: "2024-03-04T18:09:30.440002973+01:00"
appVersion: 0.10.0-rc.11
created: "2024-04-12T12:48:40.039912891Z"
description: Fleet Manager CustomResourceDefinitions
digest: bbbee6c9edfeada255baa01d06adf1eca53b78715c285b70c8c3b4b7039d9b91
digest: 8f48ed5438b7b0ffe52d89000c35b45346d77b7530741174830fb3a5d2a77810
icon: https://charts.rancher.io/assets/logos/fleet.svg
name: fleet-crd
urls:
- assets/fleet-crd/fleet-crd-104.0.0+up0.10.0-rc.4.tgz
version: 104.0.0+up0.10.0-rc.4
- assets/fleet-crd/fleet-crd-104.0.0+up0.10.0-rc.11.tgz
version: 104.0.0+up0.10.0-rc.11
- annotations:
catalog.cattle.io/certified: rancher
catalog.cattle.io/hidden: "true"
Expand Down Expand Up @@ -6084,30 +6084,6 @@ entries:
urls:
- assets/prometheus-federator/prometheus-federator-104.0.0-rc1+up0.4.1.tgz
version: 104.0.0-rc1+up0.4.1
- annotations:
catalog.cattle.io/certified: rancher
catalog.cattle.io/display-name: Prometheus Federator
catalog.cattle.io/kube-version: '>= 1.16.0-0 < 1.28.0-0'
catalog.cattle.io/namespace: cattle-monitoring-system
catalog.cattle.io/os: linux,windows
catalog.cattle.io/permits-os: linux,windows
catalog.cattle.io/provides-gvr: helm.cattle.io.projecthelmchart/v1alpha1
catalog.cattle.io/rancher-version: '>= 2.8.0-0 < 2.9.0-0'
catalog.cattle.io/release-name: prometheus-federator
apiVersion: v2
appVersion: 0.3.5
created: "2023-12-15T13:07:50.702182808-05:00"
dependencies:
- condition: helmProjectOperator.enabled
name: helmProjectOperator
repository: file://./charts/helmProjectOperator
description: Prometheus Federator
digest: b78bd24740ed6de630e8db8366aada8928cb224eb580ee843b099a056ab33059
icon: https://raw.githubusercontent.com/rancher/prometheus-federator/main/assets/logos/prometheus-federator.svg
name: prometheus-federator
urls:
- assets/prometheus-federator/prometheus-federator-103.0.1+up0.4.1.tgz
version: 103.0.1+up0.4.1
- annotations:
catalog.cattle.io/certified: rancher
catalog.cattle.io/display-name: Prometheus Federator
Expand Down

0 comments on commit 551f24b

Please sign in to comment.