GitHubアクセス用の.dockerconfigjsonを手作業で作る
GitHub Packagesに置いてあるプライベートなコンテナイメージをKubernetesで使うために、認証情報をシークレットとして登録したい。そのためには、.dockerconfigjson
というファイルが必要である。
認証情報が平文で~/.docker/config.json
に置いてあればこのファイルを.dockerconfigjson
として使えば良いが、最近はセキュアな場所に保存されていてauths
には次のように空オブジェクトがあるだけかと思う。
{
"credsStore" : "desktop",
"auths" : {
"ghcr.io" : { }
}
}
GitHubが求める認証情報はシンプルなので、.dockerconfigjson
は次のように手作業で作成できる。
{
"auths": {
"ghcr.io": {
"username": "<user>",
"password": "<token>",
"auth": "<base64 username:token>"
}
}
}
<user>
はGithubのアカウント名、<token>
はアクセストークン、<base64 username:token>
はアカウント名とアクセストークンをコロンで繋いだ文字列をBase64エンコードしたものをそれぞれ記入する。
ちなみに、この.dockerconfigjson
をkustomizeから使う場合、Secretの種類をkubernetes.io/dockerconfigjson
にする。
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
secretGenerator:
name: github
type: kubernetes.io/dockerconfigjson
files:
.dockerconfigjson
参考
Author And Source
この問題について(GitHubアクセス用の.dockerconfigjsonを手作業で作る), 我々は、より多くの情報をここで見つけました https://qiita.com/jkawamoto/items/a544ca23146ad633a62b著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .