mirror of
https://github.com/fleetdm/fleet
synced 2026-05-22 16:39:01 +00:00
* Renaming files and a lot of find and replace * pageRank meta tags, sorting by page rank * reranking * removing numbers * revert changing links that are locked to a commit * update metatag name, uncomment github contributers * Update basic-documentation.page.js * revert link change * more explicit errors, change pageOrderInSection numbers, updated sort * Update build-static-content.js * update comment * update handbook link * handbook entry * update sort * update changelog doc links to use fleetdm.com * move standard query library back to old location, update links/references to location * revert unintentional link changes * Update handbook/community.md Co-authored-by: Mike Thomas <78363703+mike-j-thomas@users.noreply.github.com> Co-authored-by: Mike Thomas <78363703+mike-j-thomas@users.noreply.github.com> Co-authored-by: Mike McNeil <mikermcneil@users.noreply.github.com>
23 lines
586 B
YAML
23 lines
586 B
YAML
apiVersion: batch/v1
|
|
kind: Job
|
|
metadata:
|
|
name: fleet-prepare-db
|
|
spec:
|
|
template:
|
|
metadata:
|
|
name: fleet-prepare-db
|
|
spec:
|
|
containers:
|
|
- name: fleet
|
|
image: fleetdm/fleet:4.0.1
|
|
command: ["fleet", "prepare", "db"]
|
|
env:
|
|
- name: FLEET_MYSQL_ADDRESS
|
|
value: fleet-database-mysql:3306
|
|
- name: FLEET_MYSQL_PASSWORD
|
|
valueFrom:
|
|
secretKeyRef:
|
|
name: fleet-database-mysql
|
|
key: mysql-password
|
|
restartPolicy: Never
|
|
backoffLimit: 4
|