...
Option 1: Define global
pullPolicy
andpullSecretName
in the Platform Operator, then they are applied to all managed HiveMQ Platforms.HiveMQ Platform Operator Helm chart:
Code Block language yaml image: repository: docker.io/hivemq name: hivemq-platform-operator tag: 1.5.1 initImageName: hivemq-platform-operator-init pullPolicy: IfNotPresent pullSecretName: ""
Option 2: Configure
pullPolicy
andpullSecret
in the HiveMQ Platformimage:
section, and they apply to all containers, including sidecars and init containers.HiveMQ Platform values.yaml
Code Block language yaml # HiveMQ Platform container image configuration image: repository: docker.io/hivemq name: hivemq4 tag: 4.31.0 pullPolicy: IfNotPresent <-- applied to all containers pullSecretName: "" <-- applied to all containers
...