我使用 Azure DevOps 构建管道构建 docker 映像并将其推送到 JFrog Artifactory。然后使用下面的 yaml 文件使用发布定义中的 Kubectl 任务将映像部署到 Azure AKS 环境中。
---
apiVersion: apps/v1
kind: Deployment
metadata:
labels:
app: webapplication-jfrog-deployment
name: webapplication-jfrog-deployment
spec:
replicas: 2
selector:
matchLabels:
app: webapplication-jfrog
template:
metadata:
labels:
app: webapplication-jfrog
spec:
containers:
-
image: #{JFrog_Login_Server_Name}#/webapplication:#{Version}#
imagePullPolicy: Always
name: webapplication-jfrog
ports:
-
containerPort: 80
---
apiVersion: v1
kind: Service
metadata:
name: webapplication-jfrog-service
spec:
ports:
-
port: 80
selector:
app: webapplication-jfrog
type: LoadBalancer
部署上述 yaml 文件后,我在 pod 中收到以下错误:
无法提取图像“xxxx-poc.jfrog.io/webapplication:xx”:rpc 错误:代码 = 未知 desc = 来自守护进程的错误响应:获取https://xxxx-poc.jfrog.io/v2/webapplication/manifests/ xx:未知:需要身份验证
发生此错误可能是身份验证问题,同时将图像从 JFrog Artifactory 拉入 Azure AKS 环境。
那么,谁能建议我如何将 JFrog Artifactory 中的映像部署到 Azure Kubernetes 服务中。