Update external-dns deployment
Some checks reported errors
continuous-integration/drone/push Build encountered an error
Some checks reported errors
continuous-integration/drone/push Build encountered an error
This commit is contained in:
parent
1e45086476
commit
03c07a1851
3 changed files with 47 additions and 5 deletions
|
|
@ -5,6 +5,16 @@
|
|||
kubernetes.core.helm_repository:
|
||||
name: external-dns
|
||||
repo_url: "https://kubernetes-sigs.github.io/external-dns"
|
||||
|
||||
- name: Install DNSEndpoint CRD
|
||||
kubernetes.core.k8s:
|
||||
state: "present"
|
||||
context: "{{ my_context }}"
|
||||
namespace: '{{ externaldns_namespace }}'
|
||||
# merge_type: merge
|
||||
apply: true
|
||||
resource_definition: "{{ lookup('url', 'https://github.com/kubernetes-sigs/external-dns/raw/master/docs/contributing/crd-source/crd-manifest.yaml', split_lines=False) | from_yaml_all }}"
|
||||
|
||||
- name: Deploy latest version of Kubernetes External DNS
|
||||
kubernetes.core.helm:
|
||||
context: "{{ my_context }}"
|
||||
|
|
@ -13,10 +23,6 @@
|
|||
create_namespace: true
|
||||
chart_ref: external-dns/external-dns
|
||||
chart_version: "{{ externaldns_chart_version }}"
|
||||
values:
|
||||
# image:
|
||||
# tag: "{{ externaldns_version }}"
|
||||
env: []
|
||||
provider: aws
|
||||
values: "{{ lookup('template', 'helm-values.yaml.j2') | from_yaml }}"
|
||||
tags:
|
||||
- externaldns
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue