namespace is now configurable
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Adrien Reslinger 2020-06-08 01:02:25 +02:00
parent cb59d073ec
commit 28f72bfda1

View file

@ -11,7 +11,7 @@
metadata:
name: traefik
labels:
namespace: traefik
namespace: '{{ traefik_namespace }}'
- name: Create a Secret object for basic authentification
k8s:
@ -22,7 +22,7 @@
kind: Secret
metadata:
name: basic-auth
namespace: traefik
namespace: '{{ traefik_namespace }}'
type: Opaque
data:
basic_auth: "{{ basic_auth_data | b64encode }}"
@ -51,7 +51,7 @@
api_version: v1
kind: Deployment
name: traefik
namespace: traefik
namespace: '{{ traefik_namespace }}'
field_selectors:
- spec.template.spec.containers.image
register: traefik_actual_resources