helm_artifact
A third party Helm artifact.
Backend: pants.backend.experimental.helm
artifact
artifact
type: str
required
Artifact name of the chart, without version number.
version
version
type: str
required
The version
part of a third party Helm chart.
description
description
type: str | None
default: None
A human-readable description of the target.
Use ./pants list --documented ::
to see all targets with descriptions.
registry
registry
type: str | None
default: None
Either registry alias (prefixed by @
) configured in [helm.registries]
for the Helm artifact or the full OCI registry URL.
repository
repository
type: str | None
default: None
Either a HTTP(S) URL to a classic repository, or a path inside an OCI registry (when registry
is provided).
tags
tags
type: Iterable[str] | None
default: None
Arbitrary strings to describe a target.
For example, you may tag some test targets with 'integration_test' so that you could run ./pants --tag='integration_test' test ::
to only run on targets with that tag.
Updated about 1 month ago