Skip to content

Latest commit

 

History

History
42 lines (31 loc) · 1.29 KB

Setup-Secrets.md

File metadata and controls

42 lines (31 loc) · 1.29 KB

logo

💙🤍Setup Secrets🤍💙

📘Table of Contents

  1. 📘Table of Contents
  2. 🖖Introduction
  3. ✨Steps
    1. 👉Step 1: Create a GitHub Secrets
    2. 👉Step 2: Create a GitHub Secrets
  4. 🔗Links

🖖Introduction

This document provides a step-by-step guide to setting up Kubernetes Secrets on the servers (nodes) in the supercluster. The steps outlined in this document are essential for ensuring the proper functioning of the servers (nodes) and the supercluster.

✨Steps

👉Step 1: Create a GitHub Secrets

kubectl create secret docker-registry github-registry \
    --docker-server=https://ghcr.io \
    --docker-username=<username> \
    --docker-password=<access_token>

👉Step 2: Create a GitHub Secrets

kubectl create secret docker-registry gitlab-registry \
    --docker-server=registry.gitlab.com \
    --docker-username=<username> \
    --docker-password=<access_token> \
    --docker-email=<email>

🔗Links