0

关于下面的 BuildConfig YAML 代码:

source:
 git:
  ref: TCPuniverse-patch-1
  uri: 'https://github.com/TCPuniverse/simple-webapp.git'
 type: Git
strategy:
 sourceStrategy:
  from:
    kind: ImageStreamTag
    name: 'python:3.6'
    namespace: openshift
output:
  to:
    kind: ImageStreamTag
    name: 'tpython-app-1:latest'

我们不应该在“构建”>“图像”页面中看到“python:3.6”图像流标记吗?策略部分中的“命名空间:openshift”是什么意思?

4

1 回答 1

1

策略部分中的“命名空间:openshift”是什么意思?

这意味着,源代码将在项目中https://github.com/TCPuniverse/simple-webapp.git使用python:3.6imagestream 标签构建。openshift并且构建的图像将作为图像流推tpython-app-1:lates送到 buildconfig 定义的项目中。

于 2020-11-28T15:22:47.817 回答