Is there an existing issue for this?
Current Behavior
I am using docker image lscr.io/linuxserver/duckdns:latest which corresponds right now to tag version-5046d23b. I am running it in microk8s cluster on my RPI4B. With the mentioned container version logs are showing following error and DNS is not getting updated:
s6-rc-compile: fatal: invalid /etc/s6-overlay/s6-rc.d/init-duckdns/type: must be oneshot, longrun, or bundle
Container runs green and does not restart but also does not do IP updates for DNS entry.
When I reverted back to the tag version-9002b57e all works fine again.
Expected Behavior
Container logs should shown successful IP updates and not error logs should be visible. DNS should get updated IP.
Steps To Reproduce
- Microk8s cluster on raspberry PI 4B with 8GB of RAM.
- Use container image
version-5046d23b
- Observer container logs.
Environment
- OS: Debian GNU/Linux 12
- How docker service was installed: Microk8s
CPU architecture
arm64
Docker creation
apiVersion: apps/v1
kind: Deployment
metadata:
name: duckdns
namespace: duckdns
labels:
app: duckdns
spec:
replicas: 1
selector:
matchLabels:
app: duckdns
template:
metadata:
labels:
app: duckdns
spec:
containers:
- name: duckdns
image: lscr.io/linuxserver/duckdns:latest
env:
- name: TOKEN
valueFrom:
secretKeyRef:
name: duckdns-pat
key: PAT
optional: false
- name: TZ
value: "Europe/Bratislava"
- name: SUBDOMAINS
value: "XXXXXXXXXXXXXXX"
Container logs
s6-rc-compile: fatal: invalid /etc/s6-overlay/s6-rc.d/init-duckdns/type: must be oneshot, longrun, or bundle
Is there an existing issue for this?
Current Behavior
I am using docker image
lscr.io/linuxserver/duckdns:latestwhich corresponds right now to tagversion-5046d23b. I am running it in microk8s cluster on my RPI4B. With the mentioned container version logs are showing following error and DNS is not getting updated:Container runs green and does not restart but also does not do IP updates for DNS entry.
When I reverted back to the tag
version-9002b57eall works fine again.Expected Behavior
Container logs should shown successful IP updates and not error logs should be visible. DNS should get updated IP.
Steps To Reproduce
version-5046d23bEnvironment
CPU architecture
arm64
Docker creation
apiVersion: apps/v1 kind: Deployment metadata: name: duckdns namespace: duckdns labels: app: duckdns spec: replicas: 1 selector: matchLabels: app: duckdns template: metadata: labels: app: duckdns spec: containers: - name: duckdns image: lscr.io/linuxserver/duckdns:latest env: - name: TOKEN valueFrom: secretKeyRef: name: duckdns-pat key: PAT optional: false - name: TZ value: "Europe/Bratislava" - name: SUBDOMAINS value: "XXXXXXXXXXXXXXX"Container logs