Skip to content

Commit

Permalink
Merge pull request #76 from kubealex/revert-75-nodeSelector
Browse files Browse the repository at this point in the history
Revert "Fix nodeSelector and its associated documentation."
  • Loading branch information
kubealex authored Nov 19, 2023
2 parents de288f5 + 5a63580 commit f42fcd7
Show file tree
Hide file tree
Showing 9 changed files with 8 additions and 16 deletions.
9 changes: 1 addition & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ letting some customization to fit the resource inside your cluster.
| general.image_tag | The name of the image tag (arm32v7-latest, arm64v8-latest, development) | latest |
| general.pgid | The GID for the process | 1000 |
| general.puid | The UID for the process | 1000 |
| general.nodeSelector | Default Node Selector for all the pods. Per-service nodeSelectors are merged against this. | {} |
| general.nodeSelector | Node Selector for all the pods | {} |
| general.storage.customVolume | Flag if you want to supply your own volume and not use a PVC | false |
| general.storage.pvcName | Name of the persistenVolumeClaim configured in deployments | mediaserver-pvc |
| general.storage.accessMode | Access mode for mediaserver PVC in case of single nodes | ReadWriteMany |
Expand All @@ -131,7 +131,6 @@ letting some customization to fit the resource inside your cluster.
| plex.enabled | Flag if you want to enable plex | true |
| plex.claim | **IMPORTANT** Token from your account, needed to claim the server | CHANGEME |
| plex.replicaCount | Number of replicas serving plex | 1 |
| plex.container.nodeSelector | Node Selector for the Plex pods | {} |
| plex.container.port | The port in use by the container | 32400 |
| plex.container.image | The image used by the container | docker.io/linuxserver/plex |
| plex.container.tag | The tag used by the container | null |
Expand All @@ -153,7 +152,6 @@ letting some customization to fit the resource inside your cluster.
| Config path | Meaning | Default |
|---------------------------------------------|----------------------------------------------------------------------------------------------------------------|-----------|
| sonarr.enabled | Flag if you want to enable sonarr | true |
| sonarr.container.nodeSelector | Node Selector for the Sonarr pods | {} |
| sonarr.container.port | The port in use by the container | 8989 |
| sonarr.container.image | The image used by the container | docker.io/linuxserver/sonarr |
| sonarr.container.tag | The tag used by the container | null |
Expand All @@ -175,7 +173,6 @@ letting some customization to fit the resource inside your cluster.
| Config path | Meaning | Default |
|---------------------------------------------|----------------------------------------------------------------------------------------------------------------|-----------|
| radarr.enabled | Flag if you want to enable radarr | true |
| radarr.container.nodeSelector | Node Selector for the Radarr pods | {} |
| radarr.container.port | The port in use by the container | 7878 |
| radarr.container.image | The image used by the container | docker.io/linuxserver/radarr |
| radarr.container.tag | The tag used by the container | null |
Expand All @@ -197,7 +194,6 @@ letting some customization to fit the resource inside your cluster.
| Config path | Meaning | Default |
|---------------------------------------------|-----------------------------------------------------------------------------------------------------------------|-----------|
| jackett.enabled | Flag if you want to enable jackett | true |
| jackett.container.nodeSelector | Node Selector for the Jackett pods | {} |
| jackett.container.port | The port in use by the container | 9117 |
| jackett.container.image | The image used by the container | docker.io/linuxserver/jackett |
| jackett.container.tag | The tag used by the container | null |
Expand All @@ -219,7 +215,6 @@ letting some customization to fit the resource inside your cluster.
| Config path | Meaning | Default |
|-----------------------------------------------|-----------------------------------------------------------------------------------------------------------------|-----------|
| prowlarr.enabled | Flag if you want to enable prowlarr | true |
| prowlarr.container.nodeSelector | Node Selector for the Prowlarr pods | {} |
| prowlarr.container.port | The port in use by the container | 9117 |
| prowlarr.container.image | The image used by the container | docker.io/linuxserver/prowlarr |
| prowlarr.container.tag | The tag used by the container | develop |
Expand All @@ -241,7 +236,6 @@ letting some customization to fit the resource inside your cluster.
| Config path | Meaning | Default |
|---------------------------------------------------|----------------------------------------------------------------------------------------------------------------|---------------|
| transmission.enabled | Flag if you want to enable transmission | true |
| transmission.container.nodeSelector | Node Selector for the Transmission pods | {} |
| transmission.container.port.utp | The port in use by the container | 9091 |
| transmission.container.port.peer | The port in use by the container for peer connection | 51413 |
| transmission.container.image | The image used by the container | docker.io/linuxserver/transmission |
Expand Down Expand Up @@ -272,7 +266,6 @@ letting some customization to fit the resource inside your cluster.
| Config path | Meaning | Default |
|---------------------------------------------|----------------------------------------------------------------------------------------------------------------|-----------|
| sabnzbd.enabled | Flag if you want to enable sabnzbd | true |
| sabnzbd.container.nodeSelector | Node Selector for the Sabnzbd pods | {} |
| sabnzbd.container.port.http | The port in use by the container | 8080 |
| sabnzbd.container.port.https | The port in use by the container for peer connection | 9090 |
| sabnzbd.container.image | The image used by the container | docker.io/linuxserver/sabnzbd |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ spec:
configMap:
defaultMode: 493
name: init-jackett-cm
{{- with merge .Values.jackett.container.nodeSelector .Values.general.nodeSelector }}
{{- with .Values.general.nodeSelector }}
nodeSelector:
{{- toYaml . | nindent 8 }}
{{- end }}
Expand Down
2 changes: 1 addition & 1 deletion helm-charts/k8s-mediaserver/templates/plex-resources.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ spec:
resources:
{{- toYaml . | nindent 12 }}
{{- end }}
{{- with merge .Values.plex.container.nodeSelector .Values.general.nodeSelector }}
{{- with .Values.general.nodeSelector }}
nodeSelector:
{{- toYaml . | nindent 8 }}
{{- end }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ spec:
configMap:
defaultMode: 493
name: init-prowlarr-cm
{{- with merge .Values.prowlarr.container.nodeSelector .Values.general.nodeSelector }}
{{- with .Values.general.nodeSelector }}
nodeSelector:
{{- toYaml . | nindent 8 }}
{{- end }}
Expand Down
2 changes: 1 addition & 1 deletion helm-charts/k8s-mediaserver/templates/radarr-resources.yml
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ spec:
configMap:
defaultMode: 493
name: init-radarr-cm
{{- with merge .Values.radarr.container.nodeSelector .Values.general.nodeSelector }}
{{- with .Values.general.nodeSelector }}
nodeSelector:
{{- toYaml . | nindent 8 }}
{{- end }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -420,7 +420,7 @@ spec:
configMap:
defaultMode: 493
name: init-sabnzbd-cm
{{- with merge .Values.sabnzbd.container.nodeSelector .Values.general.nodeSelector }}
{{- with .Values.general.nodeSelector }}
nodeSelector:
{{- toYaml . | nindent 8 }}
{{- end }}
Expand Down
2 changes: 1 addition & 1 deletion helm-charts/k8s-mediaserver/templates/sonarr-resources.yml
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ spec:
configMap:
defaultMode: 493
name: init-sonarr-cm
{{- with merge .Values.sonarr.container.nodeSelector .Values.general.nodeSelector }}
{{- with .Values.general.nodeSelector }}
nodeSelector:
{{- toYaml . | nindent 8 }}
{{- end }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ spec:
configMap:
defaultMode: 493
name: init-transmission-cm
{{- with merge .Values.transmission.container.nodeSelector .Values.general.nodeSelector }}
{{- with .Values.general.nodeSelector }}
nodeSelector:
{{- toYaml . | nindent 8 }}
{{- end }}
Expand Down
1 change: 0 additions & 1 deletion helm-charts/k8s-mediaserver/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ general:
# path: /mnt/share
ingress:
ingressClassName: ""
nodeSelector: {}

sonarr:
enabled: true
Expand Down

0 comments on commit f42fcd7

Please sign in to comment.