Skip to content

Instantly share code, notes, and snippets.

@itspacchu
Created June 29, 2025 10:50
Show Gist options
  • Save itspacchu/084b847782fad2eb443cc6abfd4a8d63 to your computer and use it in GitHub Desktop.
Save itspacchu/084b847782fad2eb443cc6abfd4a8d63 to your computer and use it in GitHub Desktop.
apiVersion: apps/v1
kind: Deployment
metadata:
name: navicord-discord-rpc-deployment
namespace: navidrome
labels:
app: navicord
spec:
replicas: 1
selector:
matchLabels:
app: navicord
template:
metadata:
labels:
app: navicord
spec:
containers:
- name: navicord
image: logixism/navicord
imagePullPolicy: IfNotPresent
env:
- name: DISCORD_CLIENT_ID # your discord application ID
value: ""
- name: LASTFM_API_KEY
value: ""
- name: DISCORD_TOKEN # get this from the discord web.. checking the POST req for the token
value: ""
- name: NAVIDROME_SERVER
value: "http://navidrome.navidrome.svc.cluster.local:4533"
- name: NAVIDROME_USERNAME
value: ""
- name: NAVIDROME_PASSWORD
value: ""
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment