0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

【k8s】minikubeでGitHub Container Registoryのimageを利用する

Last updated at Posted at 2022-02-02

はじめに

localのkubernetes環境であるminikubeでGitHub Container Registory
(GitHubが提供しているコンテナレジストリ)からimageを利用する方法について記載する。

前提

  • GitHub Container Registoryにimageがpushされていること
  • minikube環境が動かせすこと

手順

手順としてはすごく簡単で以下のコマンドを実行し、k8s sercretを作成し、適用したいdeployment等にimagePullSecretsの設定を加えるだけです。

kubectl create secret docker-registry regcred --docker-server=ghcr.io --docker-username=<GitHub Container Registory User> --docker-password=<GitHub Container Registory Pass>
apiVersion: apps/v1
kind: Deployment
metadata:
  name: app
spec:
  selector:
    matchLabels:
      app: app
  template:
    metadata:
      labels:
        app: app
    spec:
      containers:
      - name: app 
      ...
      imagePullSecrets:
      - name: regcred

参考

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?