Flux V2 ImagePolicy 版本列表参数不能为空
Flux V2 ImagePolicy version list argument cannot be empty
我有以下图像策略:
apiVersion: image.toolkit.fluxcd.io/v1alpha2
kind: ImagePolicy
metadata:
name: cps-kul-beta-imagepolicy
namespace: flux-system
spec:
imageRepositoryRef:
name: cps-kul-image
filterTags:
pattern: '^sha-(?P<ts>.*)-.+'
extract: '$ts'
policy:
numerical:
order: asc
我在对该对象执行 kubectl describe 时收到错误 version list argument cannot be empty
。
此错误表示注册表中没有符合 filterTags 部分中规定的标记模式的图像。将新图像上传到注册表将解决此问题。
我有以下图像策略:
apiVersion: image.toolkit.fluxcd.io/v1alpha2
kind: ImagePolicy
metadata:
name: cps-kul-beta-imagepolicy
namespace: flux-system
spec:
imageRepositoryRef:
name: cps-kul-image
filterTags:
pattern: '^sha-(?P<ts>.*)-.+'
extract: '$ts'
policy:
numerical:
order: asc
我在对该对象执行 kubectl describe 时收到错误 version list argument cannot be empty
。
此错误表示注册表中没有符合 filterTags 部分中规定的标记模式的图像。将新图像上传到注册表将解决此问题。