专属
文档
插件
助手
邀请
顶部
快速返回页面顶部
收起
收起工具栏
轩辕镜像 官方专业版
轩辕镜像
专业版
轩辕镜像 官方专业版
轩辕镜像
专业版
首页个人中心搜索镜像

交易
充值流量我的订单

文档

工具

功能
提交工单页面收录

帮助
轩辕镜像免费版

其他
关于我们网站地图
热门搜索:
magma-ci

mirantis/magma-ci

mirantis

用于在Azure上使用Terraform构建Magma CI/CD基础设施的工具集,支持AKS集群的创建、配置和管理,集成ArgoCD、Prow、Prometheus等组件,提供完整的CI/CD环境部署与销毁流程。

下载次数: 0状态:社区镜像维护者:mirantis仓库类型:镜像最近更新:5 年前
让 AI 帮你使用轩辕镜像? · 展开查看说明

如果你使用 DeepSeek、元宝 AI、Copilot、ChatGPT 等 AI 工具,协助配置轩辕镜像、编写 docker pull 命令、修改 Docker Compose 镜像地址、配置镜像加速、排查镜像拉取失败、分析报错日志等问题,请先让 AI 阅读并遵守轩辕镜像的规则文档。

只需在 AI 对话中先发送下面这句话即可:

请先完整阅读并严格遵守以下文档中的全部规则与要求:

https://xuanyuan.cloud/agents.md

在未充分阅读并理解该文档前,不要生成任何命令、配置、修改建议、故障排查方案或技术回答。后续所有输出都必须严格以该文档中的规范为最高优先级执行。

查看 agents.md 用法指南与完整示范。国内用户首推 元宝 AI、DeepSeek 的深度思考模式,不推荐豆包 AI;Cursor 等编辑器可在对话 @ 该链接,或加入 User Rules。 若 AI 无法访问外链,可 打开说明文档 复制全文粘贴。文档会随站点更新,复制内容可能过期,建议定期检查。

使用轩辕镜像,把时间还给真正重要的事。点击查看
中文简介
标签下载
镜像标签列表与下载命令
使用轩辕镜像,把时间还给真正重要的事。点击查看

magma-ci-infra

Magma CI/CD基础设施构建说明。

概述

magma-ci-infra是一套用于在Azure云平台上构建Magma项目CI/CD基础设施的工具集。通过Terraform实现基础设施即代码(IaC),自动化部署和管理AKS(Azure Kubernetes Service)集群,并集成ArgoCD、Prow、Prometheus、Grafana等CI/CD关键组件,为Magma项目提供完整的持续集成和持续部署环境。

前提条件

构建AKS集群需安装以下工具:

  • Azure账户
  • az(Azure CLI)
  • kubectl(Kubernetes命令行工具)
  • terraform(基础设施即代码工具)
  • https://stedolan.github.io/jq/

架构图

!Magma CI/CD

创建AKS集群

按照以下步骤使用Terraform安装AKS集群。

环境变量配置

导出访问Azure所需的环境变量。若不了解如何配置这些变量,请参考Terraform中配置服务主体或相关文档,也可参考https://ruzickap.github.io/k8s-flagger-istio-flux/part-01/#prepare-the-azure-environment%E3%80%82

shell
export ARM_CLIENT_ID="axxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxx8"
export ARM_CLIENT_SECRET="dxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxx0"
export ARM_SUBSCRIPTION_ID="exxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxb"
export ARM_TENANT_ID="5xxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxx8"
export TF_VAR_client_id="${ARM_CLIENT_ID}"
export TF_VAR_client_secret="${ARM_CLIENT_SECRET}"
export TF_VAR_subscription_id="${ARM_SUBSCRIPTION_ID}"
export TF_VAR_tenant_id="${ARM_TENANT_ID}"

上述变量为必填项,必须在执行后续步骤前正确设置。

以下为可选配置变量,可根据需要修改(默认值如下,可直接复制到终端):

shell
export TF_VAR_admin_email_address="pruzicka@mirantis.com"
export TF_VAR_dns_zone_name="magma.mirantis.cloud"
export TF_VAR_kubernetes_cluster_name="k8s"
export TF_VAR_kubernetes_version="1.15.11"
export TF_VAR_location="francecentral"
export TF_VAR_prefix="magmaci"
export TF_VAR_resource_group_name="${TF_VAR_prefix}"
export TF_VAR_resource_group_name_dns="magma-dns"
export TF_VAR_letsencrypt_environment="staging"  # staging / production(测试/生产环境)
export TF_VAR_argocd_application_git_repository="Mirantis/magma-argocd-apps"
# bcrypt哈希密码,参考:https://github.com/argoproj/argo-helm/blob/master/charts/argo-cd/values.yaml#L747
export TF_VAR_argocd_server_admin_password="htpasswd_generated_password"
export TF_VAR_harbor_admin_password="harbor_admin_password"
export TF_VAR_prow_git_repository="Mirantis/magma"
# 为机器人用户生成的GitHub个人访问令牌
export TF_VAR_prow_oauth_token='my_prow_oauth_token'
# Slack应用访问令牌:https://github.com/kubernetes/test-infra/tree/master/prow/cmd/crier
export TF_VAR_prow_slack_access_token='my_prow_slack_access_token'
export TF_VAR_oidc_client_id="1xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxr.apps.googleusercontent.com"
export TF_VAR_oidc_client_secret="_xxxxxxxxxxxxxxxxxxxxxx4"
export TF_VAR_alertmanager_slack_api_url='https://hooks.slack.com/services/TxxxxxxxT/BxxxxxxxM/Mxxxxxxxxxxxxxxxxxxxxxxr'
export TF_VAR_ssh_public_key="../../secrets/k8s-nodes-ssh-key/id_rsa.pub"
export TF_VAR_default_node_pool="{
  node_count                     = 3,
  vm_size                        = \"Standard_D2as_v4\",
  vm_disk_size                   = 40,
  zones                          = [\"1\"],
  cluster_auto_scaling           = false,
  cluster_auto_scaling_min_count = null,
  cluster_auto_scaling_max_count = null
}"
export TF_VAR_additional_node_pools="{
  p1 = {
    node_count                     = 2,
    vm_size                        = \"Standard_D2as_v4\",
    vm_disk_size                   = 40,
    zones                          = [\"1\"],
    cluster_auto_scaling           = false,
    cluster_auto_scaling_min_count = null,
    cluster_auto_scaling_max_count = null,
  },
}"
export STORAGE_ACCOUNT_NAME="${TF_VAR_prefix}tf"
export CONTAINER_NAME="${TF_VAR_prefix}-tfstate"

变量详细说明请参考terraform/azure/variables.tf。

注意:若需创建第二个集群,TF_VAR_prefix变量需设置为唯一值。

注意:若有权限访问secrets/environment_variables中的解密内容,可直接使用以下命令加载所有必要变量:

bash
source secrets/environment_variables

最佳实践:将所有变量存储在文件中,执行Terraform前通过source命令加载(如source your_env_file)。

创建Azure上的Terraform状态后端

执行Terraform前必须完成以下步骤,因为Terraform需要使用新创建的"存储容器"保存"状态文件"。

登录Azure:

bash
az login --service-principal --username "${ARM_CLIENT_ID}" --password "${ARM_CLIENT_SECRET}" --tenant "${ARM_TENANT_ID}" | jq

输出示例:

json
[
  {
    "cloudName": "AzureCloud",
    "id": "exxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxb",
    "isDefault": true,
    "name": "Pay-As-You-Go",
    "state": "Enabled",
    "tenantId": "5xxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxx8",
    "user": {
      "name": "axxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxx8",
      "type": "servicePrincipal"
    }
  }
]

创建资源组:

bash
az group create --name "${TF_VAR_resource_group_name}" --location "${TF_VAR_location}" --tags "Owner=${TF_VAR_admin_email_address}" "Environment=Testing" | jq

输出示例:

json
{
  "id": "/subscriptions/exxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxb/resourceGroups/magmaci",
  "location": "eastus",
  "managedBy": null,
  "name": "magmaci",
  "properties": {
    "provisioningState": "Succeeded"
  },
  "tags": {
    "Environment": "Testing",
    "Owner": "pruzicka@mirantis.com"
  },
  "type": "Microsoft.Resources/resourceGroups"
}

创建存储账户:

bash
az storage account create --resource-group "${TF_VAR_resource_group_name}" --name "${STORAGE_ACCOUNT_NAME}" --access-tier Cool --kind StorageV2 --sku Standard_LRS --tags "Owner=${TF_VAR_admin_email_address}" "Environment=Testing" | jq

输出示例:

json
{
  "accessTier": "Cool",
  "azureFilesIdentityBasedAuthentication": null,
  "creationTime": "2019-12-11T14:22:31.572168+00:00",
  "customDomain": null,
  "enableHttpsTrafficOnly": true,
  "encryption": {
    "keySource": "Microsoft.Storage",
    "keyVaultProperties": null,
    "services": {
      "blob": {
        "enabled": true,
        "lastEnabledTime": "2019-12-11T14:22:31.634694+00:00"
      },
      "file": {
        "enabled": true,
        "lastEnabledTime": "2019-12-11T14:22:31.634694+00:00"
      },
      "queue": null,
      "table": null
    }
  },
  "failoverInProgress": null,
  "geoReplicationStats": null,
  "id": "/subscriptions/exxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxb/resourceGroups/magmaci/providers/Microsoft.Storage/storageAccounts/magmacitf",
  "identity": null,
  "isHnsEnabled": null,
  "kind": "StorageV2",
  "largeFileSharesState": null,
  "lastGeoFailoverTime": null,
  "location": "eastus",
  "name": "magmacitf",
  "networkRuleSet": {
    "bypass": "AzureServices",
    "defaultAction": "Allow",
    "ipRules": [],
    "virtualNetworkRules": []
  },
  "primaryEndpoints": {
    "blob": "https://magmacitf.blob.core.windows.net/",
    "dfs": "https://magmacitf.dfs.core.windows.net/",
    "file": "https://magmacitf.file.core.windows.net/",
    "queue": "https://magmacitf.queue.core.windows.net/",
    "table": "https://magmacitf.table.core.windows.net/",
    "web": "https://magmacitf.z28.web.core.windows.net/"
  },
  "primaryLocation": "eastus",
  "provisioningState": "Succeeded",
  "resourceGroup": "magmaci",
  "secondaryEndpoints": null,
  "secondaryLocation": null,
  "sku": {
    "capabilities": null,
    "kind": null,
    "locations": null,
    "name": "Standard_LRS",
    "resourceType": null,
    "restrictions": null,
    "tier": "Standard"
  },
  "statusOfPrimary": "available",
  "statusOfSecondary": null,
  "tags": {
    "Environment": "Testing",
    "Owner": "pruzicka@mirantis.com"
  },
  "type": "Microsoft.Storage/storageAccounts"
}

创建容器:

bash
az storage container create --name "${CONTAINER_NAME}" --account-name "${STORAGE_ACCOUNT_NAME}" | jq

输出示例:

json
{
  "created": true
}

使用Terraform创建集群

克隆git仓库magma-ci-infra:

bash
test -d ".git" || ( git clone git@github.com:Mirantis/magma-ci-infra.git && cd magma-ci-infra )

初始化Terraform:

bash
cd terraform/azure
terraform init \
  -backend-config="container_name=${CONTAINER_NAME}" \
  -backend-config="storage_account_name=${STORAGE_ACCOUNT_NAME}" \
  -backend-config="resource_group_name=${TF_VAR_resource_group_name}"

输出示例:

text
Initializing the backend...

Successfully configured the backend "azurerm"! Terraform will automatically
use this backend unless the backend configuration changes.

Initializing provider plugins...
- Checking for available provider plugins...
- Downloading plugin for provider "azurerm" (hashicorp/azurerm) 1.37.0...

The following providers do not have any version constraints in configuration,
so the latest version was installed.

To prevent automatic upgrades to new major versions that may contain breaking
changes, it is recommended to add version = "..." constraints to the
corresponding provider blocks in configuration, with the constraint strings
suggested below.

* provider.local: version = "~> 1.3"

Terraform has been successfully initialized!

You may now begin working with Terraform. Try running "terraform plan" to see
any changes that are required for your infrastructure. All Terraform commands
should now work.

If you ever set or change modules or backend configuration for Terraform,
rerun this command to reinitialize your working directory. If you forget, other
commands will detect it and remind you to do so if necessary.

执行Terraform创建AKS集群:

bash
terraform apply -auto-approve

输出示例:

text
...
...
...
Apply complete! Resources: 44 added, 0 changed, 0 destroyed.
Releasing state lock. This may take a few moments...

Outputs:

acr_admin_password = Vxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx1
acr_admin_username = magmacik8smagmamirantiscloud
acr_login_server = magmacik8smagmamirantiscloud.azurecr.io
azure_kubernetes_cluster_login = az aks get-credentials --name magmaci-k8s-magma-mirantis-cloud --resource-group magmaci
kubeconfig_export_command = export KUBECONFIG=./kubeconfig_magmaci-k8s-magma-mirantis-cloud.conf
kubeconfig_file = ./kubeconfig_magmaci-k8s-magma-mirantis-cloud.conf
location = eastus
url_alertmanager = https://alertmanager.magmaci.magma.mirantis.cloud
url_argocd = https://argocd.magmaci.magma.mirantis.cloud
url_grafana = https://grafana.magmaci.magma.mirantis.cloud
url_prometheus = https://prometheus.magmaci.magma.mirantis.cloud
url_prow = https://prow.magmaci.magma.mirantis.cloud
url_tekton-dashboard = https://tekton-dashboard.magmaci.magma.mirantis.cloud

集群创建完成后,验证节点状态:

bash
export KUBECONFIG=$PWD/kubeconfig_magmaci-k8s-magma-mirantis-cloud.conf
kubectl get nodes

输出示例:

text
NAME                                  STATUS   ROLES   AGE   VERSION
aks-magmacik8sd-34239724-vmss000000   Ready    agent   49m   v1.15.11
aks-magmacik8sd-34239724-vmss000001   Ready    agent   43m   v1.15.11

删除AKS集群

删除集群前,需确保环境变量与创建集群时一致(见"环境变量配置"部分)。

登录Azure:

bash
az login --service-principal --username "${ARM_CLIENT_ID}" --password "${ARM_CLIENT_SECRET}" --tenant "${ARM_TENANT_ID}" | jq

输出示例:

json
[
  {
    "cloudName": "AzureCloud",
    "id": "exxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxb",
    "isDefault": true,
    "name": "Pay-As-You-Go",
    "state": "Enabled",
    "tenantId": "5xxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxx8",
    "user": {
      "name": "axxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxx8",
      "type": "servicePrincipal"
    }
  }
]

进入terraform/azure目录:

bash
cd terraform/azure

删除AKS集群及依赖资源:

bash
terraform destroy -auto-approve

输出示例:

text
data.azurerm_resource_group.resource_group: Refreshing state...
azurerm_kubernetes_cluster.aks: Refreshing state... [id=/subscriptions/exxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxb/resourcegroups/magmaci/providers/Microsoft.ContainerService/managedClusters/magmaci-k8s-magma-mirantis-cloud]
local_file.file: Refreshing state... [id=e90e46639b01fedc353cbb70664748b643f823a0]
local_file.file: Destroying... [id=e90e46639b01fedc353cbb70664748b643f823a0]
local_file.file: Destruction complete after 0s
...
...
...
Destroy complete!

删除包含Terraform容器/存储的资源组:

bash
az group delete --yes --name "${TF_VAR_resource_group_name}"

清理本地Terraform和Azure相关文件:

bash
rm -rf .terraform
az logout
rm -rf ~/.azure

从零构建Magma CI/CD环境

镜像拉取方式

您可以使用以下命令拉取该镜像。请将 <标签> 替换为具体的标签版本。如需查看所有可用标签版本,请访问 标签列表页面。

轩辕镜像加速拉取命令点我查看更多 magma-ci 镜像标签

docker pull docker.xuanyuan.run/mirantis/magma-ci:<标签>

使用方法:

  • 登录认证方式
  • 免认证方式

DockerHub 原生拉取命令

docker pull mirantis/magma-ci:<标签>

更多 magma-ci 镜像推荐

magmacore/magmalte logo

magmacore/magmalte

magmacore
暂无描述
1万+ 次下载
3 年前更新
etnaagent/magma logo

etnaagent/magma

etnaagent
暂无描述
10万+ 次下载
5 天前更新
etnaagent/magma_app_fe logo

etnaagent/magma_app_fe

etnaagent
暂无描述
10万+ 次下载
11 个月前更新
lavabit/magma logo

lavabit/magma

lavabit
magma加密邮件守护进程的构建环境
2 次收藏1万+ 次下载
2 年前更新
rdefosseoai/magma-mme logo

rdefosseoai/magma-mme

rdefosseoai
Openair-cn是3GPP规范的演进分组核心(EPC)网络实现,包含MME、HSS、S-GW+P-GW等网络元素,基于Ubuntu 18的参考镜像(更新频率较低)。
1万+ 次下载
4 年前更新
lavabit/magma-centos logo

lavabit/magma-centos

lavabit
magma加密邮件守护进程的构建环境,用于构建和编译magma加密邮件相关组件的专用环境。
1 次收藏1万+ 次下载
2 年前更新

查看更多 magma-ci 相关镜像

轩辕镜像配置手册

按平台快速找到配置文档

Docker

登录仓库拉取

登录认证 · 私有仓库

专属域名拉取

免登录 · 高速拉取

Linux

Docker 镜像配置

Windows / Mac

Docker Desktop 配置

MacOS OrbStack

OrbStack 容器

Docker Compose

Compose 项目配置

NAS

群晖

Synology 配置

飞牛

fnOS 镜像配置

绿联

绿联 NAS

威联通

QNAP 配置

极空间

极空间 NAS

企业仓库

其他仓库

ghcr · Quay · nvcr

Harbor 镜像源

Proxy Repository 对接

Portainer 镜像源

Registries 配置

Nexus 镜像源

Docker Proxy 缓存

开发工具

Dev Containers

VS Code 开发容器

Podman

Podman 配置指南

Singularity / Apptainer

HPC 科学计算容器

Kubernetes

K8s Containerd

Kubernetes · Containerd

K3s

轻量级集群

面板 / 网络

爱快路由

iKuai 镜像加速

宝塔面板

一键配置镜像源

AI

用 AI 使用轩辕镜像

agents.md · AI 对话 · 提示词

一键安装

一键安装 Docker

Linux Docker 一键安装

需要其他帮助?请查看我们的 常见问题 Docker 镜像访问常见问题解答 或 提交工单

镜像拉取常见问题

功能

免费版与专业版区别

功能对比 · 版本选择

支持的镜像仓库

Docker Hub · GCR · GHCR

新手拉取配置

登录 · 专属域名 · 配置

docker search 限制

专属域名 · Hub 搜索

不支持 push

仅支持 pull · 不支持

拉取速度原因

带宽 · 缓存 · 冷热镜像

错误码

402 与流量用尽

402 · 流量包 · 充值

401 认证失败

401 · docker login

manifest unknown

标签错误 · 镜像不存在

410 Gone 排查

410 · Docker 升级

429 限流

免费版 · 请求频率

其他报错

DNS 超时

DNS 解析 · 网络超时

TLS 证书失败

no matching manifest(架构)

账号

失败是否计费

manifest · blob · 计费

申请开发票(企业 / 个人)

企业 · 个人 · 工单

修改登录密码

网站 · 仓库 · 重置

注销账户

工单 · 数据 · 注销

原理

mirrors 不生效

daemon.json · 重启

去掉域名前缀

docker tag · 重命名

指定架构拉取

ARM64 · AMD64 · 多架构

latest 与「最新」

digest · 版本号 · 标签

查看全部问题→

用户好评

来自真实用户的反馈,见证轩辕镜像的优质服务

用户头像

oldzhang

运维工程师

Linux服务器

5

"Docker访问体验非常流畅,大镜像也能快速完成下载。"

轩辕镜像
镜像详情
...
mirantis/magma-ci
教程轩辕镜像功能与使用教程
价格查看流量套餐与价格
热门查看热门 Docker 镜像推荐
博客Docker 镜像公告与技术博客
官方公众号:源码跳动|官方技术交流群:51517718
官方公众号:源码跳动|官方技术交流群:|问题咨询请:提交工单
商务合作:点击复制邮箱
©2024-2026 源码跳动
商务合作:点击复制邮箱Copyright © 2024-2026 杭州源码跳动科技有限公司. All rights reserved.