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
Change introduced in PR breaks when parsing image repositories which are using custom ports.
Images of the form dockerrepo.example.com:5000/grafana/grafana:8.1.1 are incorrectly parsed and result in a deployment manifest with image: dockerrepo.example.com:8.1.1
The change is splitting on all ':' characters (line 46) and selecting the first field. Correct parsing would split on the right-most ':' and then select the first field.
Did you expect to see some different?
A properly parsed image value would result in a deployment with image: dockerrepo.example.com:5000/grafana/grafana:8.1.1
How to reproduce it (as minimally and precisely as possible):
What happened?
Change introduced in PR breaks when parsing image repositories which are using custom ports.
Images of the form
dockerrepo.example.com:5000/grafana/grafana:8.1.1
are incorrectly parsed and result in a deployment manifest withimage: dockerrepo.example.com:8.1.1
The change is splitting on all ':' characters (line 46) and selecting the first field. Correct parsing would split on the right-most ':' and then select the first field.
Did you expect to see some different?
A properly parsed image value would result in a deployment with
image: dockerrepo.example.com:5000/grafana/grafana:8.1.1
How to reproduce it (as minimally and precisely as possible):
Environment
Prometheus Operator version:
release-0.9
Kubernetes version information:
v0.49.0
Kubernetes cluster kind:
insert how you created your cluster: kops, bootkube, tectonic-installer, etc.
Manifests:
N/A
N/A
Anything else we need to know?:
The text was updated successfully, but these errors were encountered: