-
Notifications
You must be signed in to change notification settings - Fork 718
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fleet/fleet - make charts to save the fix in 2.7
- Loading branch information
1 parent
227dbcc
commit fe5d2d7
Showing
23 changed files
with
676 additions
and
1 deletion.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
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/kube-version: '>= 1.16.0-0 < 1.28.0-0' | ||
catalog.cattle.io/namespace: cattle-fleet-system | ||
catalog.cattle.io/os: linux | ||
catalog.cattle.io/permits-os: linux,windows | ||
catalog.cattle.io/provides-gvr: clusters.fleet.cattle.io/v1alpha1 | ||
catalog.cattle.io/rancher-version: '>= 2.7.0-0 < 2.8.0-0' | ||
catalog.cattle.io/release-name: fleet | ||
apiVersion: v2 | ||
appVersion: 0.8.5 | ||
dependencies: | ||
- condition: gitops.enabled | ||
name: gitjob | ||
repository: file://./charts/gitjob | ||
version: 0.8.8 | ||
description: Fleet Manager - GitOps at Scale | ||
icon: https://charts.rancher.io/assets/logos/fleet.svg | ||
name: fleet | ||
version: 102.2.6+up0.8.5 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# Fleet Helm Chart | ||
|
||
Fleet is GitOps at scale. Fleet is designed to manage multiple clusters. | ||
|
||
## What is Fleet? | ||
|
||
* Cluster engine: Fleet is a container management and deployment engine designed to offer users more control on the local cluster and constant monitoring through GitOps. Fleet focuses not only on the ability to scale, but it also gives users a high degree of control and visibility to monitor exactly what is installed on the cluster. | ||
|
||
* Deployment management: Fleet can manage deployments from git of raw Kubernetes YAML, Helm charts, Kustomize, or any combination of the three. Regardless of the source, all resources are dynamically turned into Helm charts, and Helm is used as the engine to deploy all resources in the cluster. As a result, users can enjoy a high degree of control, consistency, and auditability of their clusters. | ||
|
||
## Introduction | ||
|
||
This chart deploys Fleet on a Kubernetes cluster. It also deploys some of its dependencies as subcharts. | ||
|
||
The documentation is centralized in the [doc website](https://fleet.rancher.io/). | ||
|
||
## Prerequisites | ||
|
||
Get helm if you don't have it. Helm 3 is just a CLI. | ||
|
||
|
||
## Install Fleet | ||
|
||
Install the Fleet Helm charts (there are two because we separate out CRDs for ultimate flexibility.): | ||
|
||
``` | ||
$ helm repo add fleet https://rancher.github.io/fleet-helm-charts/ | ||
$ helm -n cattle-fleet-system install --create-namespace --wait fleet-crd fleet/fleet-crd | ||
$ helm -n cattle-fleet-system install --create-namespace --wait fleet fleet/fleet | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,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/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
apiVersion: v2 | ||
appVersion: 0.8.8 | ||
description: Controller that run jobs based on git events | ||
name: gitjob | ||
version: 0.8.8 |
7 changes: 7 additions & 0 deletions
7
charts/fleet/102.2.6+up0.8.5/charts/gitjob/templates/_helpers.tpl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{{- define "system_default_registry" -}} | ||
{{- if .Values.global.cattle.systemDefaultRegistry -}} | ||
{{- printf "%s/" .Values.global.cattle.systemDefaultRegistry -}} | ||
{{- else -}} | ||
{{- "" -}} | ||
{{- end -}} | ||
{{- end -}} |
38 changes: 38 additions & 0 deletions
38
charts/fleet/102.2.6+up0.8.5/charts/gitjob/templates/clusterrole.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,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: | ||
- "*" |
12 changes: 12 additions & 0 deletions
12
charts/fleet/102.2.6+up0.8.5/charts/gitjob/templates/clusterrolebinding.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,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 }} |
51 changes: 51 additions & 0 deletions
51
charts/fleet/102.2.6+up0.8.5/charts/gitjob/templates/deployment.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
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 | ||
args: | ||
{{- if .Values.debug }} | ||
- --debug | ||
{{- end }} | ||
- --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 }} | ||
{{- if .Values.debug }} | ||
- name: CATTLE_DEV_MODE | ||
value: "true" | ||
{{- end }} | ||
{{- with .Values.tolerations }} | ||
tolerations: | ||
{{- toYaml . | nindent 8 }} | ||
{{- end }} | ||
{{- with .Values.nodeSelector }} | ||
nodeSelector: | ||
{{- toYaml . | nindent 8 }} | ||
{{- end }} | ||
{{- if .Values.priorityClassName }} | ||
priorityClassName: "{{.Values.priorityClassName}}" | ||
{{- end }} |
23 changes: 23 additions & 0 deletions
23
charts/fleet/102.2.6+up0.8.5/charts/gitjob/templates/leases.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
apiVersion: rbac.authorization.k8s.io/v1 | ||
kind: Role | ||
metadata: | ||
name: gitjob | ||
rules: | ||
- apiGroups: | ||
- "coordination.k8s.io" | ||
resources: | ||
- "leases" | ||
verbs: | ||
- "*" | ||
--- | ||
apiVersion: rbac.authorization.k8s.io/v1 | ||
kind: RoleBinding | ||
metadata: | ||
name: gitjob | ||
roleRef: | ||
apiGroup: rbac.authorization.k8s.io | ||
kind: Role | ||
name: gitjob | ||
subjects: | ||
- kind: ServiceAccount | ||
name: gitjob |
12 changes: 12 additions & 0 deletions
12
charts/fleet/102.2.6+up0.8.5/charts/gitjob/templates/service.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
apiVersion: v1 | ||
kind: Service | ||
metadata: | ||
name: gitjob | ||
spec: | ||
ports: | ||
- name: http-80 | ||
port: 80 | ||
protocol: TCP | ||
targetPort: 8080 | ||
selector: | ||
app: "gitjob" |
4 changes: 4 additions & 0 deletions
4
charts/fleet/102.2.6+up0.8.5/charts/gitjob/templates/serviceaccount.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
apiVersion: v1 | ||
kind: ServiceAccount | ||
metadata: | ||
name: gitjob |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
gitjob: | ||
repository: rancher/gitjob | ||
tag: v0.8.8 | ||
|
||
tekton: | ||
repository: rancher/tekton-utils | ||
tag: v0.1.44 | ||
|
||
global: | ||
cattle: | ||
systemDefaultRegistry: "" | ||
|
||
# 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 | ||
|
||
nodeSelector: | ||
kubernetes.io/os: linux | ||
|
||
tolerations: | ||
- key: cattle.io/os | ||
operator: "Equal" | ||
value: "linux" | ||
effect: NoSchedule | ||
|
||
# PriorityClassName assigned to deployment. | ||
priorityClassName: "" | ||
|
||
debug: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{{- define "system_default_registry" -}} | ||
{{- if .Values.global.cattle.systemDefaultRegistry -}} | ||
{{- printf "%s/" .Values.global.cattle.systemDefaultRegistry -}} | ||
{{- else -}} | ||
{{- "" -}} | ||
{{- end -}} | ||
{{- end -}} | ||
|
||
{{/* | ||
Windows cluster will add default taint for linux nodes, | ||
add below linux tolerations to workloads could be scheduled to those linux nodes | ||
*/}} | ||
{{- define "linux-node-tolerations" -}} | ||
- key: "cattle.io/os" | ||
value: "linux" | ||
effect: "NoSchedule" | ||
operator: "Equal" | ||
{{- end -}} | ||
|
||
{{- define "linux-node-selector" -}} | ||
kubernetes.io/os: linux | ||
{{- end -}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
apiVersion: v1 | ||
kind: ConfigMap | ||
metadata: | ||
name: fleet-controller | ||
data: | ||
config: | | ||
{ | ||
"systemDefaultRegistry": "{{ template "system_default_registry" . }}", | ||
"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}}", | ||
"agentNamespace": "{{.Values.bootstrap.agentNamespace}}", | ||
}, | ||
"webhookReceiverURL": "{{.Values.webhookReceiverURL}}", | ||
"githubURLPrefix": "{{.Values.githubURLPrefix}}" | ||
} |
Oops, something went wrong.