Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: use correct image in k8s-deployment.yaml #157

Merged
merged 1 commit into from
Jan 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions contrib/k8s-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ metadata:
type: Opaque
stringData:
# NOT base64
GARMIN_PASSWORD: "[email protected]"
GARMIN_USERNAME: "password-goes-here"
GARMIN_USERNAME: "[email protected]"
GARMIN_PASSWORD: "password-goes-here"
TRAINERROAD_PASSWORD: ""
TRAINERROAD_USERNAME: ""

Expand Down Expand Up @@ -74,7 +74,7 @@ spec:
spec:
containers:
- name: withings-sync
image: docker.io/stv0g/withings-sync
image: ghcr.io/jaroslawhartman/withings-sync:master
imagePullPolicy: IfNotPresent

# override $HOME to put our oauth file in a known place
Expand Down
6 changes: 3 additions & 3 deletions contrib/k8s-job.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ metadata:
type: Opaque
stringData:
# NOT base64
GARMIN_PASSWORD: "[email protected]"
GARMIN_USERNAME: "password-goes-here"
GARMIN_USERNAME: "[email protected]"
GARMIN_PASSWORD: "password-goes-here"
TRAINERROAD_PASSWORD: ""
TRAINERROAD_USERNAME: ""

Expand All @@ -39,7 +39,7 @@ spec:
volumeMode: Filesystem

---
apiVersion: batch/v1beta1
apiVersion: batch/v1
kind: CronJob
metadata:
name: withings-garmin-sync
Expand Down