regarding to the BuildConfig YAML code bellow:
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'
shouldn't we see "python:3.6" Image Stream Tag in Build > Images page? And what does the "namespace: openshift" mean in strategy section?
It means,
https://github.com/TCPuniverse/simple-webapp.git
source will build usingpython:3.6
imagestream tag inopenshift
project. And the built image would be pushed astpython-app-1:lates
imagestream in the project the buildconfig defined.