Correct secret type for Docker config (#43)

The suggested secret type does not work as a pull secret. Change to a type documented in the k8s docs: https://kubernetes.io/docs/concepts/configuration/secret/#docker-config-secrets
This commit is contained in:
Richard Simko 2022-01-10 17:13:25 +01:00 коммит произвёл GitHub
Родитель c22008b744
Коммит 97b9f86e43
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -21,7 +21,7 @@ jobs:
uses: azure/k8s-create-secret@v2
with:
namespace: 'myapp'
secret-type: 'docker-registry'
secret-type: 'kubernetes.io/dockerconfigjson'
secret-name: 'contoso-cr'
string-data: ${{ secrets.SECRET_STRING_DATA}}
id: create-secret