Skip to content
arrow-up-circle

GitHub Action

Rancher Update Service

v3.0.0 Latest version

Rancher Update Service

arrow-up-circle

Rancher Update Service

An action for updating a service in the Rancher 2.x environment

Installation

Copy and paste the following snippet into your .yml file.

              

- name: Rancher Update Service

uses: sekassel-research/actions-rancher-update@v3.0.0

Learn more about this action in sekassel-research/actions-rancher-update

Choose a version

rancher-update

This action helps by updating a service in the Rancher 2 environment with kubernetes.

Examples

Update service

on:
push:
  branches:
  - master

jobs:
  release:
    runs-on: ubuntu-latest
    steps:
    - uses: sekassel-research/actions-rancher-update@v3.1.1
      with:
        rancher_url: ${{ secrets.RANCHER_URL }} # e.g. https://rancher.test.de
        rancher_token: ${{ secrets.RANCHER_TOKEN }} # e.g. token-xxxxx:xxxxxxxxxxxxxxx
        cluster_id: ${{ secrets.CLUSTER_ID }} # e.g. c-xxxxx
        project_id: ${{ secrets.PROJECT_ID }} # e.g. p-xxxxx
        namespace: ${{ secrets.NAMESPACE }}
        kind: deployment # e.g. deployment (default), statefulset, cronjob
        workload: ${{ secrets.WORKLOAD }} # e.g. my-service
        deployment: ${{ secrets.DEPLOYMENT }} # deprecated, use workload instead
        docker_image: sekassel-research/example:latest
        container_id: 0 # optional, defaults to 0

Backwards compatibility

If you want to use this extension for Rancher 1.6.x, please read the instructions on the v1 branch.