Last active
June 3, 2025 05:13
-
-
Save skylerspaeth/d208e16456ecad47114753f4f48bc4cb to your computer and use it in GitHub Desktop.
Southwest Auto-Checkin Kubernetes Job
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apiVersion: batch/v1 | |
kind: Job | |
metadata: | |
name: southwest-auto-checkin | |
spec: | |
template: | |
spec: | |
containers: | |
- name: checkin | |
image: jdholtz/auto-southwest-check-in | |
args: ["RECORD_LOCATOR", "FIRST_NAME", "LAST_NAME"] | |
restartPolicy: Never | |
backoffLimit: 4 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment