You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I had the following agent configuration in my values.yaml file upon initial jenkins installation
agent:
image:
repository: gcr.io/xxxxx/jenkins-agenttag: 2024-08-19imagePullPolicy: IfNotPresent# Max number of spawned agentscontainerCap: 0# Set to something otherwise it defaults to `sleep`command: "jenkins-agent"nodeSelector:
workloads-jenkins-agents: "true"podName: jenkins-agentresources:
requests:
cpu: "2500m"memory: "2500Mi"limits:
cpu: "5000m"memory: "5000Mi"
A few weeks later, I tried updating the image tag to tag: 2024-09-19. The agents that came up thereafter still used the old tag that was used upon initial Jenkins setup.
### Chart version
5.6.0
### What happened?
- Updated the agent image tag
- Applied the changes via the command `kubectl kustomize --enable-helm | kubectl apply -f -`
- The main jenkins pod successfully restarted
- The configmap entry for `jcasc-default-config.yaml` shows the newly applied agent image tag.
- The pod template did not get updated with the new tag and subsequent jenkins-agents continue to use the old image tag used during the initial Jenkins setup.
### What you expected to happen?
The pod template should be automatically updated and the jenkins-agent images should use the new image tag.
### How to reproduce it
```markdown
- Update the agent image tag
- Apply the changes via the command `kubectl kustomize --enable-helm | kubectl apply -f -`
- Make sure main jenkins pod successfully restarts
- Make sure the configmap entry for `jcasc-default-config.yaml` shows the newly applied agent image tag.
- The pod template should get updated with the new tag and subsequent jenkins-agents should now use the new jenkins-agent image tag.
Anything else we need to know?
No response
The text was updated successfully, but these errors were encountered:
Describe the bug
I had the following agent configuration in my values.yaml file upon initial jenkins installation
A few weeks later, I tried updating the image tag to
tag: 2024-09-19
. The agents that came up thereafter still used the old tag that was used upon initial Jenkins setup.Version of Helm and Kubernetes
Anything else we need to know?
No response
The text was updated successfully, but these errors were encountered: