fix(renovate-operator): Fix inclusion of docker login
This commit is contained in:
parent
e7fe39a55c
commit
47a110d564
1 changed files with 4 additions and 4 deletions
|
|
@ -10,13 +10,13 @@ data:
|
|||
"hostRules": [
|
||||
{
|
||||
"matchHost": "docker.io",
|
||||
"username": "{{ env.DOCKER_USERNAME}}",
|
||||
"password": "{{ env.DOCKER_TOKEN }}"
|
||||
"username": "{{ process.env.DOCKER_USERNAME }}",
|
||||
"password": "{{ process.env.DOCKER_TOKEN }}"
|
||||
},
|
||||
{
|
||||
"matchHost": "registry-1.docker.io",
|
||||
"username": "{{ env.DOCKER_USERNAME}}",
|
||||
"password": "{{ env.DOCKER_TOKEN }}"
|
||||
"username": "{{ process.env.DOCKER_USERNAME }}",
|
||||
"password": "{{ process.env.DOCKER_TOKEN }}"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue