mirror of
https://github.com/fleetdm/fleet
synced 2026-05-24 01:18:42 +00:00
Fix confusion with tags on dogfood deploy workflow (#8964)
* Fix confusion with tags on dogfood deploy workflow * Update .github/workflows/dogfood-deploy.yml Co-authored-by: Michal Nicpon <39177923+michalnicp@users.noreply.github.com> Co-authored-by: Michal Nicpon <39177923+michalnicp@users.noreply.github.com>
This commit is contained in:
parent
111a633bd5
commit
41feacad4d
1 changed files with 3 additions and 3 deletions
6
.github/workflows/dogfood-deploy.yml
vendored
6
.github/workflows/dogfood-deploy.yml
vendored
|
|
@ -3,8 +3,8 @@ name: Deploy Dogfood Environment
|
|||
on:
|
||||
workflow_dispatch:
|
||||
inputs:
|
||||
IMAGE_TAG:
|
||||
description: 'The image tag wished to be deployed.'
|
||||
DOCKER_IMAGE:
|
||||
description: 'The full name of the docker image to be deployed. (e.g. fleetdm/fleet:v4.24.1)'
|
||||
required: true
|
||||
|
||||
# This allows a subsequently queued workflow run to interrupt previous runs
|
||||
|
|
@ -29,7 +29,7 @@ env:
|
|||
TF_VAR_redis_instance: cache.t3.micro
|
||||
TF_VAR_fleet_min_capacity: 2
|
||||
TF_VAR_fleet_max_capacity: 5
|
||||
TF_VAR_fleet_image: ${{ github.event.inputs.IMAGE_TAG || 'fleetdm/fleet:main' }}
|
||||
TF_VAR_fleet_image: ${{ github.event.inputs.DOCKER_IMAGE || 'fleetdm/fleet:main' }}
|
||||
TF_VAR_logging_debug: true
|
||||
TF_VAR_fleet_license: ${{ secrets.DOGFOOD_LICENSE_KEY }}
|
||||
TF_VAR_cloudwatch_log_retention: 30
|
||||
|
|
|
|||
Loading…
Reference in a new issue