Action for request to Portainer API for redeploy stack with pull latest images
Find a file
2023-08-22 17:50:06 +02:00
dist Improve logging 2023-08-22 17:50:06 +02:00
.gitignore Initial commit 2022-12-09 00:00:11 +03:00
action.yml Update action to update git stacks 2023-08-17 19:17:58 +02:00
index.js Improve logging 2023-08-22 17:50:06 +02:00
package.json Update action to update git stacks 2023-08-17 19:17:58 +02:00
README.md Update action to update git stacks 2023-08-17 19:17:58 +02:00
yarn.lock Initial commit 2022-12-09 00:00:11 +03:00

Portainer stack redeploy action

This action allows you to update the stack with pull new images if you can't use webhooks. For example, in Portainer Community Edition. This is a fork of wirgen/portainer-stack-redeploy-action which allows to update stack deployed with a git repository hosting the docker-compose.yaml.

Inputs

portainerUrl

Required URL to the application instance. For example, https://example.com:9443

accessToken

Required Token for API requests, can be created on the page https://example.com:9443/#!/account/tokens/new

stackId

Required ID of stack to be updated. Must be integer

endpointId

ID of endpoint (environment). Required if your stack is not in local environment

environment

Environment variables to set on the stack. When omitted, all existing variables will be cleared from the stack. Must be input as a JSON String; one array of objects each with the keys name and value

Example usage

uses:  JuliusFreudenberger/portainer-stack-git-redeploy-action@v1.0
with:
  portainerUrl: 'https://example.com:9443'
  accessToken: 'ptr_XXXyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy'
  stackId: 8
  endpointId: 3
  environment: '[{"name":"image_version","value":"xxx"}]'