Tekton パイプラインは初めてです。Jenkins ファイルを Tekton パイプラインから移行しています
私は次のjenkinsfileコードを持っています
pipeline {
libraries {
lib 'operator-pipeline-library'
}
parameters {
string(name: 'OPERATOR_CATALOG_REPO', description: ' operator images that are in the catalog', defaultValue: 'operator-3rdparty-dev-local.net')
string(name: 'OPERATOR_INDEX', description: 'Artifactory ', defaultValue: 'operator-3rdparty-catalog-dev-local.net')
}
agent {
kubernetes {
cloud 'openshift'
yamlFile 'operator-mirror-pod.yaml'
}
}
}
私は次のように書き直す方法を知りたいです
agent {
kubernetes {
cloud 'openshift'
yamlFile 'operator-pod.yaml'
}
}
Tekton パイプラインで