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

[EVERGIS] websocket-services должен указывать на backend.service.name. Required defaults #457

Merged
merged 3 commits into from
Oct 17, 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
8 changes: 4 additions & 4 deletions charts/gis-platform/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,11 +84,11 @@ See the [documentation](https://docs.2gis.com/en/on-premise/gis-platform) to lea
| `spcore.postgres.name` | PostgreSQL database name **Required** | `""` |
| `spcore.postgres.poolsize` | PostgreSQL connection pool size. | `25` |
| `spcore.admin` | **Admin access settings.** | |
| `spcore.admin.email` | Admin email **Required** | `[email protected]` |
| `spcore.admin.password` | Admin password **Required** | `123456` |
| `spcore.admin.email` | Admin email **Required** Example: [email protected] | `""` |
| `spcore.admin.password` | Admin password **Required** | `""` |
| `spcore.jwt` | **JSON Web Token (JWT) settings.** | |
| `spcore.jwt.tokenKey` | JWT default user token **Required** | `supersecrettoken` |
| `spcore.jwt.tokenAdmin` | JWT admin user token **Required** | `supersecrettoken` |
| `spcore.jwt.tokenKey` | JWT default user token **Required** | `""` |
| `spcore.jwt.tokenAdmin` | JWT admin user token **Required** | `""` |
| `spcore.catalog` | **Catalog settings.** | |
| `spcore.catalog.url` | Catalog service URL **Required** Example: `http://catalog-api` | `""` |
| `spcore.catalog.key` | Catalog access key **Required** | `""` |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ metadata:
nginx.ingress.kubernetes.io/proxy-connect-timeout: {{ .Values.portal.websocket.timeout | quote }}
nginx.ingress.kubernetes.io/proxy-read-timeout: {{ .Values.portal.websocket.timeout | quote }}
nginx.ingress.kubernetes.io/proxy-send-timeout: {{ .Values.portal.websocket.timeout | quote }}
nginx.org/websocket-services: websocket
nginx.org/websocket-services: {{ $fullName }}
{{- if .Values.ingress.annotations }}
{{- with .Values.ingress.annotations }}
{{- toYaml . | nindent 4 }}
Expand Down
10 changes: 5 additions & 5 deletions charts/gis-platform/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -126,20 +126,20 @@ spcore:
poolsize: 25

# @extra spcore.admin **Admin access settings.**
# @param spcore.admin.email Admin email **Required**
# @param spcore.admin.email Admin email **Required** Example: [email protected]
# @param spcore.admin.password Admin password **Required**

admin:
email: [email protected]
password: '123456'
email: ''
endryhold marked this conversation as resolved.
Show resolved Hide resolved
password: ''

# @extra spcore.jwt **JSON Web Token (JWT) settings.**
# @param spcore.jwt.tokenKey JWT default user token **Required**
# @param spcore.jwt.tokenAdmin JWT admin user token **Required**

jwt:
tokenKey: supersecrettoken
tokenAdmin: supersecrettoken
tokenKey: ''
tokenAdmin: ''

# @extra spcore.catalog **Catalog settings.**
# @param spcore.catalog.url Catalog service URL **Required** Example: `http://catalog-api`
Expand Down
Loading