Hello community.
I am new to Bitbucket Pipeline Shared Configuration .
https://support.atlassian.com/bitbucket-cloud/docs/share-pipelines-configurations/
I have two repos in the same Bitbucket Repository workspace project.
repo1 named : harmony-helm-chart, has the bitbicket-pipeline.yml. The repo built successfully.
"
export: true
image: stackrox/kube-linter:main-alpine
definitions:
pipelines:
share-pipeline-lint: &share-pipeline-lint
- step:
name: Kube-Linter Lint
script:
- /kube-linter lint . --config ci/kube-linter-config.yaml
pipelines:
custom:
manifest-share-pipeline: *share-pipeline-lint
"
the second repo2 is referencing the "share-pipeline-lint"
as in
""
pipelines:
custom:
import-pipeline:
import: harmony-helm-chart:kube-linter:share-pipeline-lint
""
repo2 is referencing harmony-helm-chart but not building.
I had been debugging the failed pipeline. Could need some help.