forked from gardener/gardener
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path55-gardenlet.yaml
More file actions
45 lines (45 loc) · 1.82 KB
/
55-gardenlet.yaml
File metadata and controls
45 lines (45 loc) · 1.82 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
apiVersion: seedmanagement.gardener.cloud/v1alpha1
kind: Gardenlet
metadata:
name: <seed-name>
namespace: garden
spec:
deployment: # gardenlet deployment parameters
helm:
ociRepository:
repository: europe-docker.pkg.dev/gardener-project/releases/charts/gardener/gardenlet
# tag: latest
# pullSecretRef:
# name: <pull-secret-name> # located in garden namespace
# image: # here you can overwrite the gardenlet image itself (typically not needed since the OCI URL above implicitly defines the image/version)
# repository: europe-docker.pkg.dev/gardener-project/releases/gardener/gardenlet
# tag: latest
# pullPolicy: IfNotPresent
# imageVectorOverwrite: | # here you can overwrite the image repos + tags of the components deployed by gardenlet, e.g. etcd-druid, machine-controller-manager, kube-apiserver, etc.
# Please find documentation in /docs/deployment/image_vector.md#overwriting-image-vector
# componentImageVectorOverwrites: |
# Please find documentation in /docs/deployment/image_vector.md#image-vectors-for-dependent-components
replicaCount: 2
revisionHistoryLimit: 2
resources:
requests:
cpu: 100m
memory: 100Mi
limits:
cpu: 2000m
memory: 512Mi
podAnnotations:
foo: bar
podLabels:
foo: bar
additionalVolumes: []
additionalVolumeMounts: []
env: []
config:
apiVersion: gardenlet.config.gardener.cloud/v1alpha1
kind: GardenletConfiguration
<See `20-componentconfig-gardenlet.yaml` for more details>
# For the very first deployment of a gardenlet via gardener-operator, you can specify a secret containing a kubeconfig
# for the target cluster. gardener-operator will then attempt to deploy gardenlet into it.
# kubeconfigSecretRef:
# name: <name-to-secret-containing-kubeconfig>