changed configuration for future containerization
This commit is contained in:
parent
7d08317efd
commit
6e38c18e7f
|
@ -30,3 +30,5 @@
|
|||
/target
|
||||
LICENSE
|
||||
README.md
|
||||
config.toml
|
||||
mastodon-data.toml
|
|
@ -59,4 +59,4 @@ USER botuser
|
|||
COPY --from=build /bin/bot /bin/
|
||||
|
||||
# What the container should run when it is started.
|
||||
CMD ["/bin/cd", "/bin/bot"]
|
||||
CMD ["/bin/bot"]
|
||||
|
|
10
cron.yaml
10
cron.yaml
|
@ -11,20 +11,18 @@ spec:
|
|||
containers:
|
||||
- name: bot-job
|
||||
image: git.fai.st/fedi-image-bot/mastodon-image-uploader-bot:latest
|
||||
# Command to execute your Rust application or script
|
||||
command: ["/path/to/your/rust/executable"]
|
||||
volumeMounts:
|
||||
- name: config-toml
|
||||
mountPath: /botuser/
|
||||
mountPath: /app/
|
||||
readOnly: true
|
||||
- name: mastodon-token
|
||||
mountPath: /botuser/
|
||||
mountPath: /app/
|
||||
readOnly: true
|
||||
restartPolicy: Never
|
||||
volumes:
|
||||
- name: config-volume
|
||||
- name: config-toml
|
||||
configMap:
|
||||
name: my-config
|
||||
name: bot-config-toml
|
||||
- name: mastodon-token
|
||||
secret:
|
||||
secretName: mastodon-data
|
||||
|
|
Loading…
Reference in New Issue