namespace is now configurable
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
cb59d073ec
commit
28f72bfda1
1 changed files with 3 additions and 3 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue