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

chore: update custom network properties key #178

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
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
2 changes: 1 addition & 1 deletion chart/templates/uds-package.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ spec:
description: "Mattermost Postgres"

# Custom rules for unanticipated scenarios
{{- range .Values.custom }}
{{- range .Values.additionalNetworkAllow }}
robmcelvenny marked this conversation as resolved.
Show resolved Hide resolved
- direction: {{ .direction }}
selector:
{{ .selector | toYaml | nindent 10 }}
Expand Down
2 changes: 1 addition & 1 deletion chart/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ storage:
namespace: minio
port: 9000

# custom:
# additionalNetworkAllow:
# # Notice no `remoteGenerated` field here on custom internal rule
# - direction: Ingress
# selector:
Expand Down
2 changes: 1 addition & 1 deletion docs/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Network policies are controlled via the `uds-mattermost-config` chart in accorda

- `postgres`: sets network policies for accessing a Postgres database from the Mattermost pod
- `storage`: sets network policies for accessing S3-compatible object storage from the Mattermost pod
- `custom`: sets custom network policies for the Mattermost namespace - this allows for custom integrations with other services
- `additionalNetworkAllow`: sets custom network policies for the Mattermost namespace - this allows for custom integrations with other services

## Database

Expand Down
Loading