3.2.4-scratch-r0 release
This commit is contained in:
parent
37e778c04f
commit
6a01345ece
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"argo-workflow-controller": {
|
||||
"digest": "4cc45286aa3dff4c4d8b876203a2a6436b0fef895fa8f05faf554676a63db60f",
|
||||
"digest": "2763f2831235e2d0cc937e74792ae3a179bbea9edb272862be63b2af5333a13b",
|
||||
"type": "BLACKSMITH",
|
||||
"version": "3.2.3"
|
||||
"version": "3.2.4"
|
||||
}
|
||||
}
|
||||
|
|
@ -1,23 +1,27 @@
|
|||
# What is Argo Workflows Controller?
|
||||
# Argo Workflow Controller packaged by Bitnami
|
||||
|
||||
## What is Argo Workflow Controller?
|
||||
|
||||
> Argo Workflow Controller is the controller component for the Argo Workflows engine, which is meant to orchestrate Kubernetes jobs in parallel.
|
||||
|
||||
[argoproj.github.io](https://argoproj.github.io)
|
||||
[Overview of Argo Workflow Controller](https://argoproj.github.io/workflows)
|
||||
|
||||
# TL;DR
|
||||
Trademarks: This software listing is packaged by Bitnami. The respective trademarks mentioned in the offering are owned by the respective companies, and use of them does not imply any affiliation or endorsement.
|
||||
|
||||
## TL;DR
|
||||
|
||||
```console
|
||||
$ docker run -it --name argo-workflow-controller bitnami/argo-workflow-controller
|
||||
```
|
||||
|
||||
## Docker Compose
|
||||
### Docker Compose
|
||||
|
||||
```console
|
||||
$ curl -sSL https://raw.githubusercontent.com/bitnami/bitnami-docker-argo-workflow-controller/master/docker-compose.yml > docker-compose.yml
|
||||
$ docker-compose up -d
|
||||
```
|
||||
|
||||
# Why use Bitnami Images?
|
||||
## Why use Bitnami Images?
|
||||
|
||||
* Bitnami closely tracks upstream source changes and promptly publishes new versions of this image using our automated systems.
|
||||
* With Bitnami images the latest bug fixes and features are available as soon as possible.
|
||||
|
|
@ -29,24 +33,24 @@ $ docker-compose up -d
|
|||
|
||||
> This [CVE scan report](https://quay.io/repository/bitnami/argo-workflow-controller?tab=tags) contains a security report with all open CVEs. To get the list of actionable security issues, find the "latest" tag, click the vulnerability report link under the corresponding "Security scan" field and then select the "Only show fixable" filter on the next page.
|
||||
|
||||
# How to deploy Argo Workflows Controller in Kubernetes?
|
||||
## How to deploy Argo Workflows Controller in Kubernetes?
|
||||
|
||||
Deploying Bitnami applications as Helm Charts is the easiest way to get started with our applications on Kubernetes. Read more about the installation in the [Bitnami Argo Workflows Chart GitHub repository](https://github.com/bitnami/charts/tree/master/bitnami/argo-workflows).
|
||||
|
||||
# Why use a non-root container?
|
||||
## Why use a non-root container?
|
||||
|
||||
Non-root container images add an extra layer of security and are generally recommended for production environments. However, because they run as a non-root user, privileged tasks are typically off-limits. Learn more about non-root containers [in our docs](https://docs.bitnami.com/tutorials/work-with-non-root-containers/).
|
||||
|
||||
# Supported tags and respective `Dockerfile` links
|
||||
## Supported tags and respective `Dockerfile` links
|
||||
|
||||
Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/).
|
||||
|
||||
|
||||
* [`3`, `3-scratch`, `3.2.3`, `3.2.3-scratch-r0` (3/scratch/Dockerfile)](https://github.com/bitnami/bitnami-docker-acmesolver/blob/3.2.3-scratch-r0/3/scratch/ Dockerfile)
|
||||
* [`3`, `3-scratch`, `3.2.4`, `3.2.4-scratch-r0` (3/scratch/Dockerfile)](https://github.com/bitnami/bitnami-docker-acmesolver/blob/3.2.4-scratch-r0/3/scratch/ Dockerfile)
|
||||
|
||||
Subscribe to project updates by watching the [bitnami/argo-workflow-controller GitHub repo](https://github.com/bitnami/bitnami-docker-argo-workflow-controller).
|
||||
|
||||
# Get this image
|
||||
## Get this image
|
||||
|
||||
The recommended way to get the Bitnami Argo Workflows Controller Docker Image is to pull the prebuilt image from the [Docker Hub Registry](https://hub.docker.com/r/bitnami/argo-workflow-controller).
|
||||
|
||||
|
|
@ -66,13 +70,13 @@ If you wish, you can also build the image yourself.
|
|||
$ docker build -t bitnami/argo-workflow-controller 'https://github.com/bitnami/bitnami-docker-argo-workflow-controller.git#master:7/debian-10'
|
||||
```
|
||||
|
||||
# Maintenance
|
||||
## Maintenance
|
||||
|
||||
## Upgrade this image
|
||||
### Upgrade this image
|
||||
|
||||
Bitnami provides up-to-date versions of Argo Workflows Controller, including security patches, soon after they are made upstream. We recommend that you follow these steps to upgrade your container.
|
||||
|
||||
### Step 1: Get the updated image
|
||||
#### Step 1: Get the updated image
|
||||
|
||||
```console
|
||||
$ docker pull bitnami/argo-workflow-controller:latest
|
||||
|
|
@ -80,7 +84,7 @@ $ docker pull bitnami/argo-workflow-controller:latest
|
|||
|
||||
or if you're using Docker Compose, update the value of the image property to `bitnami/argo-workflow-controller:latest`.
|
||||
|
||||
### Step 2: Remove the currently running container
|
||||
#### Step 2: Remove the currently running container
|
||||
|
||||
```console
|
||||
$ docker rm -v argo-workflow-controller
|
||||
|
|
@ -92,7 +96,7 @@ or using Docker Compose:
|
|||
$ docker-compose rm -v argo-workflow-controller
|
||||
```
|
||||
|
||||
### Step 3: Run the new image
|
||||
#### Step 3: Run the new image
|
||||
|
||||
Re-create your container from the new image.
|
||||
|
||||
|
|
@ -106,9 +110,9 @@ or using Docker Compose:
|
|||
$ docker-compose up argo-workflow-controller
|
||||
```
|
||||
|
||||
# Configuration
|
||||
## Configuration
|
||||
|
||||
## Running commands
|
||||
### Running commands
|
||||
|
||||
To run commands inside this container you can use `docker run`, for example to execute `argocd --help` you can follow the example below:
|
||||
|
||||
|
|
@ -118,11 +122,11 @@ $ docker run --rm --name argo-workflow-controller bitnami/argo-workflow-controll
|
|||
|
||||
Check the [official Argo Workflows Controller documentation](https://argoproj.github.io/argo-workflows/environment-variables/#controller) for the list of the available parameters.
|
||||
|
||||
# Contributing
|
||||
## Contributing
|
||||
|
||||
We'd love for you to contribute to this Docker image. You can request new features by creating an [issue](https://github.com/bitnami/bitnami-docker-argo-workflow-controller/issues), or submit a [pull request](https://github.com/bitnami/bitnami-docker-argo-workflow-controller/pulls) with your contribution.
|
||||
|
||||
# Issues
|
||||
## Issues
|
||||
|
||||
If you encountered a problem running this container, you can file an [issue](https://github.com/bitnami/bitnami-docker-argo-workflow-controller/issues/new). For us to provide better support, be sure to include the following information in your issue:
|
||||
|
||||
|
|
@ -133,7 +137,7 @@ If you encountered a problem running this container, you can file an [issue](htt
|
|||
- The command you used to run the container, and any relevant output you saw (masking any sensitive
|
||||
information)
|
||||
|
||||
# License
|
||||
## License
|
||||
|
||||
Copyright (c) 2021 Bitnami
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue