Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: networkpolicy allow gcp to ingress k8s pull #916

Merged
merged 3 commits into from
May 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions charts/substra-backend/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
# Changelog

<!-- towncrier release notes start -->
## [26.6.5] - 2024-05-29

### Fixed

- Open ingress for `docker-registry` when `containerRegistry.local` is `true` as it it is necessary on some infrastructure (#916)

## [26.6.4] - 2024-05-27

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion charts/substra-backend/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v2
name: substra-backend
home: https://github.com/Substra
version: 26.6.4
version: 26.6.5
appVersion: 0.45.0
kubeVersion: ">= 1.19.0-0"
description: Main package for Substra
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,10 @@ spec:
app.kubernetes.io/part-of: {{ template "substra.name" . }}
role-registry-client: 'true'
# kaniko-function-xx send requests through the service, which changes the IP address calling the registry, preventing
# to connect as the connection doesn't come directly from the pod
# to connect as the connection doesn't come directly from the pod. Cloud provider also uses IPs whiwh are not part
# of the cluster to pull images
- ipBlock:
cidr: 10.0.0.0/8
cidr: 0.0.0.0/0
ports:
- protocol: TCP
port: {{ .Values.containerRegistry.port }}
Expand Down
Loading