Skip to content

Commit

Permalink
Merge pull request #9 from sOblivionsCall/feature/se_qol_tweaks
Browse files Browse the repository at this point in the history
Feature/se qol tweaks
  • Loading branch information
sOblivionsCall authored Jul 15, 2021
2 parents b8eddda + a87418e commit ac853c5
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
This repository contains [Helm](https://helm.sh) charts for various projects

* [speedtest-tracker](charts/speedtest-tracker/)
* [space-engineers](charts/space-engineers/)

## Installing Charts from this Repository

Expand Down
2 changes: 1 addition & 1 deletion space-engineers/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,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: 1.0.0
version: 1.0.1

# 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
5 changes: 2 additions & 3 deletions space-engineers/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ spec:
initContainers:
- name: {{ .Chart.Name }}-init
image: ubuntu:xenial
command: ['sh', '-c']
command: ['bash', '-c']
args:
- echo "Installing required packages";
apt-get update && apt-get install wget unzip -y;
Expand All @@ -49,7 +49,7 @@ spec:
chmod -R 777 /appdata;
echo "Done";
fi;
echo "Complete"
echo "Complete";
volumeMounts:
- name: appdata
mountPath: /appdata
Expand All @@ -58,7 +58,6 @@ spec:
securityContext:
{{- toYaml .Values.securityContext | nindent 12 }}
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
# command: [ 'sh', '-c', 'sleep 999' ]
imagePullPolicy: {{ .Values.image.pullPolicy }}
ports:
- name: tcp
Expand Down
2 changes: 1 addition & 1 deletion speedtest-tracker/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,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: 3.0.2
version: 3.0.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
Expand Down

0 comments on commit ac853c5

Please sign in to comment.