写点什么

2023-01-07:hyper/docker-registry-web 是 registry 的 web 界面工具之一。请问部署在 k3s 中,yaml 如何写?

  • 2023-01-07
    北京
  • 本文字数:496 字

    阅读完需:约 2 分钟

2023-01-07:hyper/docker-registry-web是registry的web界面工具之一。请问部署在k3s中,yaml如何写?

2023-01-07:hyper/docker-registry-web 是 registry 的 web 界面工具之一。请问部署在 k3s 中,yaml 如何写?


答案 2023-01-07:


yaml 如下:


apiVersion: apps/v1kind: Deploymentmetadata:  labels:    app: docker-registry-web  name: docker-registry-web  namespace: dronecispec:  replicas: 1  selector:    matchLabels:      app: docker-registry-web  template:    metadata:      labels:        app: docker-registry-web    spec:      containers:        - env:            - name: "REGISTRY_NAME"              value: "registry:5000"            - name: "REGISTRY_URL"              value: "http://registry:5000/v2"          image: "hyper/docker-registry-web"          imagePullPolicy: IfNotPresent          name: docker-registry-web---apiVersion: v1kind: Servicemetadata:  labels:    app: docker-registry-web  name: docker-registry-web  namespace: dronecispec:  ports:    - port: 8080      protocol: TCP      targetPort: 8080  selector:    app: docker-registry-web  type: NodePort
复制代码





发布于: 刚刚阅读数: 3
用户头像

还未添加个人签名 2021-02-15 加入

还未添加个人简介

评论

发布
暂无评论
2023-01-07:hyper/docker-registry-web是registry的web界面工具之一。请问部署在k3s中,yaml如何写?_云原生_福大大架构师每日一题_InfoQ写作社区