Setting Up ArgoCD with GitHub Integration

Setting Up ArgoCD with GitHub Integration
Photo by Mohammad Rahmani / Unsplash

Title: Setting Up ArgoCD with GitHub Integration

Introduction

ArgoCD is a powerful GitOps tool for managing Kubernetes resources directly from your version control system. Integrating ArgoCD with GitHub enables automated synchronization of your cluster’s state with your Git repositories. In this guide, I’ll walk you through setting up ArgoCD CLI, logging into the ArgoCD server, and adding a GitHub repository with authentication.


Step 1: Install the ArgoCD CLI

To interact with your ArgoCD installation, you’ll need the ArgoCD CLI tool. Follow these steps to install it:

Download the ArgoCD CLI for your platform:

curl -sSL -o /usr/local/bin/argocd https://github.com/argoproj/argo-cd/releases/latest/download/argocd-linux-amd64

Make the CLI executable:

chmod +x /usr/local/bin/argocd

Verify the installation:

argocd version

You should see the installed version of the ArgoCD CLI, confirming a successful installation.


Step 2: Log in to the ArgoCD Server

Before adding a GitHub repository, you need to log into the ArgoCD server using the CLI.

    • Replace <RETRIEVED_PASSWORD> with the decoded password.
    • Use --insecure if you don’t have a valid TLS certificate (not recommended for production).

Find the URL of your ArgoCD server. This could be the external URL configured via Ingress or a NodePort. For example:

Verify login:

https://argocd.prod.example.com

Retrieve the ArgoCD admin password:

kubectl get secret argocd-initial-admin-secret -n argocd -o jsonpath="{.data.password}" | base64 -d

Log in to the ArgoCD server:

argocd login argocd.prod.example.com --username admin --password <RETRIEVED_PASSWORD> --insecure

Verify login:

bashCopyEdit

argocd account get-user-info

Step 3: Add a GitHub Repository

To enable ArgoCD to sync with your GitHub repository, add the repository to ArgoCD with authentication:

    • Replace https://github.com/YourUsername/your-repo-name with the URL of your GitHub repository.
    • Replace YourUsername with your GitHub username.
    • Replace ghp_your_generated_token with a GitHub personal access token (PAT) that has repo scope.

Add the GitHub repository:

argocd repo add https://github.com/YourUsername/your-repo-name \
    --username YourUsername \
    --password ghp_your_generated_token

Verify the repository is added:

argocd repo list

You should see the repository listed, confirming successful integration.


Step 4: Generate a GitHub Personal Access Token

If you haven’t already generated a GitHub PAT, follow these steps:

  1. Go to GitHub Personal Access Tokens.
  2. Click Generate new token.
  3. Select the necessary scopes:
    • repo: Full control of private repositories (required for private repos).
  4. Click Generate token and copy the generated token.

以上資訊GPT整理

Read more

如何安裝 KubeSphere 以及管理 Workspace 和新增 Label

前言 在 Kubernetes 的世界中,KubeSphere 是一個功能強大的開源容器平台,它不僅讓 Kubernetes 的管理更簡單,還集成了多集群管理、DevOps、微服務治理等功能。本篇文章將教您如何使用 Helm 快速安裝 KubeSphere,並如何通過管理 Workspace 和新增 Label 來實現資源的高效管理。 一、使用 Helm 安裝 KubeSphere 1. 為什麼選擇 Helm 安裝? Helm 是 Kubernetes 中廣泛使用的包管理工具,使用 Helm 安裝 KubeSphere 有以下優點: * 自動化:簡化安裝過程,減少手動配置。 * 靈活性:可以根據需求自定義安裝的模組。 * 版本控制:支持管理和回滾安裝的不同版本。 2. 安裝前準備 在開始安裝之前,請確保以下條件:

By Tim Chiagn

我的經驗

1. 網絡與安全 (Networking & Security) * Fortigate: 防火牆來管理網路環境 * Traefik: 用於 K8s 的 2. 虛擬化與存儲 (Virtualization & Storage) * Esxi: 買了一台server 使用 Esxi 管理 vm * TrueNAS: 還沒有買 NAS 使用這個加減用一下 3. DevOps 與持續交付 (DevOps & CI/CD) * ArgoCD: GitOps 工具,用於 Kubernetes 的應用交付和管理,支持自動化部署和同步。 * KubeSphere:提供完整的 CI/CD 工作流管理、應用部署和 DevOps 整合功能,是 Kubernetes

By Tim Chiagn