Skip to content
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
11 changes: 8 additions & 3 deletions build/bashrc
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,14 @@ alias ls="ls --color"
alias ll="ls -l"
find /home/project -name .profile -exec source {} \; 2>/dev/null

export DOCKER_HOST=tcp://localhost:2376
export DOCKER_TLS_VERIFY=1
export DOCKER_CERT_PATH=/home/project/.tls/client
# Defaults to the TLS-secured dind sidecar on :2376. Deployments using a
# different docker/podman endpoint (e.g. a plain unix socket) can set
# WEBSHELL_DOCKER_HOST to override it.
export DOCKER_HOST="${WEBSHELL_DOCKER_HOST:-tcp://localhost:2376}"
if [ -z "$WEBSHELL_DOCKER_HOST" ]; then
export DOCKER_TLS_VERIFY=1
export DOCKER_CERT_PATH=/home/project/.tls/client
fi

alias k=kubectl
complete -o default -F __start_kubectl k
Expand Down
4 changes: 2 additions & 2 deletions deploy/charts/webshell/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ apiVersion: v2
name: webshell
description: A Helm chart to deploy a webshell environment
type: application
version: 0.5.30
appVersion: "0.5.30"
version: 0.5.31
appVersion: "0.5.31"
Loading