Skip to content

Commit

Permalink
remove useless optional var
Browse files Browse the repository at this point in the history
add pod security as default
bump version
  • Loading branch information
hofq committed Jun 17, 2024
1 parent c62469b commit ca53f20
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 15 deletions.
2 changes: 1 addition & 1 deletion charts/librechat-rag-api/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.1.3
version: 0.1.4

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
1 change: 0 additions & 1 deletion charts/librechat-rag-api/templates/rag-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@ spec:
{{- end }}
{{- if .Values.global.librechat.existingSecretName }}
- name: OPENAI_API_KEY
optional: true
valueFrom:
secretKeyRef:
name: {{ .Values.global.librechat.existingSecretName }}
Expand Down
6 changes: 3 additions & 3 deletions charts/librechat/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 1.3.3
version: 1.4.3

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.

# renovate: image=ghcr.io/danny-avila/librechat
appVersion: "v0.7.2"
appVersion: "v0.7.3"

home: https://blue-atlas.de

Expand All @@ -36,6 +36,6 @@ dependencies:
condition: meilisearch.enabled
repository: "https://meilisearch.github.io/meilisearch-kubernetes"
- name: librechat-rag-api
version: "0.1.3"
version: "0.1.4"
condition: librechat-rag-api.enabled
repository: file://../librechat-rag-api #"https://charts.blue-atlas.de"
20 changes: 10 additions & 10 deletions charts/librechat/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -144,16 +144,16 @@ fullnameOverride: ""
podAnnotations: {}
podLabels: {}

podSecurityContext: {}
# fsGroup: 2000

securityContext: {}
# capabilities:
# drop:
# - ALL
# readOnlyRootFilesystem: true
# runAsNonRoot: true
# runAsUser: 1000
podSecurityContext:
fsGroup: 2000

securityContext:
capabilities:
drop:
- ALL
# readOnlyRootFilesystem: true # not supported yet
runAsNonRoot: true
runAsUser: 1000

service:
type: ClusterIP
Expand Down

0 comments on commit ca53f20

Please sign in to comment.