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/fixed steampipe #31

Merged
merged 4 commits into from
Sep 28, 2023
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
2 changes: 1 addition & 1 deletion charts/steampipe/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: steampipe
description: A Helm chart for Kubernetes to deploy Steampipe
type: application
version: 1.0.1
version: 1.1.0
appVersion: "0.20.12"
home: https://github.com/devops-ia/helm-charts/tree/main/charts/steampipe
sources:
Expand Down
28 changes: 11 additions & 17 deletions charts/steampipe/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,16 +25,14 @@ serviceAccount:

podAnnotations: {}

podSecurityContext: {}
# fsGroup: 2000
podSecurityContext:
fsGroup: 9193
runAsGroup: 65534
runAsUser: 9193

securityContext: {}
# capabilities:
# drop:
# - ALL
# readOnlyRootFilesystem: true
# runAsNonRoot: true
# runAsUser: 1000
securityContext:
runAsNonRoot: true
runAsUser: 9193

command: []
# - "steampipe"
Expand Down Expand Up @@ -80,7 +78,7 @@ configProbe: {}
db:
enabled: false
port: 9193
listen: "local"
listen: "network"

dashboard:
enabled: false
Expand Down Expand Up @@ -179,13 +177,9 @@ initContainer:
# Overrides the image tag whose default is the chart appVersion.
tag: ""

securityContext: {}
# capabilities:
# drop:
# - ALL
# readOnlyRootFilesystem: true
# runAsNonRoot: true
# runAsUser: 1000
securityContext:
runAsNonRoot: true
runAsUser: 9193

# Ref: https://hub.steampipe.io/plugins
plugins: []
Expand Down