-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge tag 'v0.14.7' into multiple-remote-write-targets
- Loading branch information
Showing
52 changed files
with
519 additions
and
194 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
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
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
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
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
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
11 changes: 11 additions & 0 deletions
11
control-plane/roles/gardener/templates/backup-s3/controller-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,11 @@ | ||
--- | ||
apiVersion: core.gardener.cloud/v1 | ||
kind: ControllerDeployment | ||
metadata: | ||
name: backup-s3 | ||
helm: | ||
rawChart: "{{ (lookup('url', 'https://raw.githubusercontent.com/' + gardener_extension_backup_s3_repo_ref + '/example/controller-registration.yaml', split_lines=False) | from_yaml_all | list)[0].helm.rawChart }}" | ||
values: | ||
image: | ||
repository: "{{ gardener_extension_backup_s3_image_name }}" | ||
tag: "{{ gardener_extension_backup_s3_image_tag }}" |
16 changes: 16 additions & 0 deletions
16
control-plane/roles/gardener/templates/backup-s3/controller-registration.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,16 @@ | ||
--- | ||
apiVersion: core.gardener.cloud/v1beta1 | ||
kind: ControllerRegistration | ||
metadata: | ||
name: backup-s3 | ||
annotations: | ||
security.gardener.cloud/pod-security-enforce: baseline | ||
spec: | ||
deployment: | ||
deploymentRefs: | ||
- name: backup-s3 | ||
resources: | ||
- kind: BackupBucket | ||
type: S3 | ||
- kind: BackupEntry | ||
type: S3 |
12 changes: 12 additions & 0 deletions
12
control-plane/roles/gardener/templates/csi-driver-lvm/controller-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,12 @@ | ||
--- | ||
apiVersion: core.gardener.cloud/v1 | ||
kind: ControllerDeployment | ||
metadata: | ||
name: csi-driver-lvm | ||
helm: | ||
rawChart: "{{ (lookup('url', 'https://raw.githubusercontent.com/' + gardener_extension_csi_driver_lvm_image_repo_ref + '/example/controller-registration.yaml', split_lines=False) | from_yaml_all | list)[0].helm.rawChart }}" | ||
values: | ||
image: | ||
repository: {{ gardener_extension_csi_driver_lvm_image_name }} | ||
tag: {{ gardener_extension_csi_driver_lvm_image_tag }} | ||
pullPolicy: Always |
13 changes: 13 additions & 0 deletions
13
control-plane/roles/gardener/templates/csi-driver-lvm/controller-registration.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,13 @@ | ||
--- | ||
apiVersion: core.gardener.cloud/v1beta1 | ||
kind: ControllerRegistration | ||
metadata: | ||
name: csi-driver-lvm | ||
spec: | ||
deployment: | ||
policy: Always | ||
deploymentRefs: | ||
- name: csi-driver-lvm | ||
resources: | ||
- kind: Extension | ||
type: csi-driver-lvm |
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
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
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
11 changes: 11 additions & 0 deletions
11
control-plane/roles/gardener/templates/powerdns/controller-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,11 @@ | ||
--- | ||
apiVersion: core.gardener.cloud/v1 | ||
kind: ControllerDeployment | ||
metadata: | ||
name: powerdns | ||
helm: | ||
rawChart: "{{ (lookup('url', 'https://raw.githubusercontent.com/' + gardener_extension_dns_powerdns_repo_ref + '/example/controller-registration.yaml', split_lines=False) | from_yaml_all | list)[0].helm.rawChart }}" | ||
values: | ||
image: | ||
repository: "{{ gardener_extension_dns_powerdns_image_name }}" | ||
tag: "{{ gardener_extension_dns_powerdns_image_tag }}" |
14 changes: 14 additions & 0 deletions
14
control-plane/roles/gardener/templates/powerdns/controller-registration.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,14 @@ | ||
--- | ||
apiVersion: core.gardener.cloud/v1beta1 | ||
kind: ControllerRegistration | ||
metadata: | ||
name: powerdns | ||
annotations: | ||
security.gardener.cloud/pod-security-enforce: baseline | ||
spec: | ||
deployment: | ||
deploymentRefs: | ||
- name: powerdns | ||
resources: | ||
- kind: DNSRecord | ||
type: powerdns |
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
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
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
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
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
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
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
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
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
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
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,14 @@ | ||
# blackbox-exporter | ||
|
||
Deploys the blackbox-exporter in a systemd-managed Docker container. | ||
|
||
## Variables | ||
|
||
This role uses variables from [partition-defaults](/partition). So, make sure you define them adequately as well. | ||
|
||
| Name | Mandatory | Description | | ||
| ----------------------------------------- | --------- | -------------------------------------------- | | ||
| monitoring_blackbox_exporter_etc_host_dir | | The host directory for the blackbox exporter | | ||
| monitoring_blackbox_exporter_image_name | | Image name of the blackblox exporter | | ||
| monitoring_blackbox_exporter_image_tag | | Image tag of the blackbox exporter | | ||
| monitoring_blackbox_exporter_port | | Port for the blackblox exporter | |
Oops, something went wrong.