Skip to content

Commit

Permalink
removing version from installs so we don't need this constantly updated
Browse files Browse the repository at this point in the history
  • Loading branch information
SQLJames committed Nov 10, 2024
1 parent 0d73693 commit 9029b48
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
10 changes: 5 additions & 5 deletions charts/factorio-server-charts/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
```bash
$ helm repo add factorio https://sqljames.github.io/factorio-server-charts
$ helm repo update
$ helm search repo factorio/factorio-server-charts --version=2.5.0
$ helm upgrade -i factorio factorio/factorio-server-charts -n factorio --create-namespace --version=2.5.0
$ helm search repo factorio/factorio-server-charts
$ helm upgrade -i factorio factorio/factorio-server-charts -n factorio --create-namespace
```

## Introduction
Expand All @@ -28,7 +28,7 @@ This chart deploys Factorio on a [Kubernetes](http://kubernetes.io) cluster usin
To install/upgrade the chart with the release name `factorio`:

```bash
$ helm upgrade -i factorio factorio/factorio-server-charts -n factorio --create-namespace --version=2.5.0
$ helm upgrade -i factorio factorio/factorio-server-charts -n factorio --create-namespace
```

The command deploys Factorio on the Kubernetes cluster in the default configuration. The [configuration](#configuration) section lists the parameters that can be configured during installation.
Expand Down Expand Up @@ -337,14 +337,14 @@ The following table lists the configurable parameters of the `factorio-server-ch
Specify each parameter using the `--set key=value[,key=value]` argument to `helm upgrade -i`. For example:

```bash
$ helm upgrade -i factorio factorio/factorio-server-charts -n factorio --create-namespace --version=2.5.0 --set replicaCount=1
$ helm upgrade -i factorio factorio/factorio-server-charts -n factorio --create-namespace --set replicaCount=1
```

Alternatively, a YAML file that specifies the values for the parameters can be provided while
installing the chart. For example:

```bash
$ helm upgrade -i factorio factorio/factorio-server-charts -n factorio --create-namespace --version=2.5.0 --values values.yaml
$ helm upgrade -i factorio factorio/factorio-server-charts -n factorio --create-namespace --values values.yaml
```

## Releases
Expand Down
10 changes: 5 additions & 5 deletions charts/factorio-server-charts/readme.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
```bash
$ helm repo add {{ .Repository.Name }} {{ .Repository.URL }}
$ helm repo update
$ helm search repo {{ .Repository.Name }}/{{ .Chart.Name }}{{ with .Chart.Version }} --version={{.}}{{ end }}
$ helm upgrade -i {{ .Release.Name }} {{ .Repository.Name }}/{{ .Chart.Name }} -n {{ .Release.Namespace }} --create-namespace{{ with .Chart.Version }} --version={{.}}{{ end }}
$ helm search repo {{ .Repository.Name }}/{{ .Chart.Name }}
$ helm upgrade -i {{ .Release.Name }} {{ .Repository.Name }}/{{ .Chart.Name }} -n {{ .Release.Namespace }} --create-namespace
```

## Introduction
Expand All @@ -30,7 +30,7 @@ This chart deploys {{ .Project.App }} on a [Kubernetes](http://kubernetes.io) cl
To install/upgrade the chart with the release name `{{ .Release.Name }}`:

```bash
$ helm upgrade -i {{ .Release.Name }} {{ .Repository.Name }}/{{ .Chart.Name }} -n {{ .Release.Namespace }} --create-namespace{{ with .Chart.Version }} --version={{.}}{{ end }}
$ helm upgrade -i {{ .Release.Name }} {{ .Repository.Name }}/{{ .Chart.Name }} -n {{ .Release.Namespace }} --create-namespace
```

The command deploys {{ .Project.App }} on the Kubernetes cluster in the default configuration. The [configuration](#configuration) section lists the parameters that can be configured during installation.
Expand Down Expand Up @@ -152,14 +152,14 @@ The following table lists the configurable parameters of the `{{ .Chart.Name }}`
Specify each parameter using the `--set key=value[,key=value]` argument to `helm upgrade -i`. For example:

```bash
$ helm upgrade -i {{ .Release.Name }} {{ .Repository.Name }}/{{ .Chart.Name }} -n {{ .Release.Namespace }} --create-namespace{{ with .Chart.Version }} --version={{.}}{{ end }} --set {{ .Chart.ValuesExample }}
$ helm upgrade -i {{ .Release.Name }} {{ .Repository.Name }}/{{ .Chart.Name }} -n {{ .Release.Namespace }} --create-namespace --set {{ .Chart.ValuesExample }}
```

Alternatively, a YAML file that specifies the values for the parameters can be provided while
installing the chart. For example:

```bash
$ helm upgrade -i {{ .Release.Name }} {{ .Repository.Name }}/{{ .Chart.Name }} -n {{ .Release.Namespace }} --create-namespace{{ with .Chart.Version }} --version={{.}}{{ end }} --values values.yaml
$ helm upgrade -i {{ .Release.Name }} {{ .Repository.Name }}/{{ .Chart.Name }} -n {{ .Release.Namespace }} --create-namespace --values values.yaml
```
{{- end }}

Expand Down

0 comments on commit 9029b48

Please sign in to comment.