[bitnami/argo-cd] Release 2.4.8-debian-11-r0 (#1204)

Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>
This commit is contained in:
Bitnami Bot 2022-07-30 00:16:55 +02:00 committed by GitHub
parent 016e19c45a
commit 19ab79121d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 16 additions and 21 deletions

View File

@ -8,18 +8,18 @@ COPY prebuildfs /
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
# Install required system packages and dependencies
RUN install_packages acl ca-certificates curl git git-lfs gnupg gzip libc6 procps tar
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kustomize" "4.5.5-151" --checksum 03e1413bed0ba2d68e2cba2e0a1a7d319dd635034d625220bd66c7c40b77c575
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kustomize" "4.5.6-0" --checksum 16c565a0527f60dc812f71ac20ddea07d0c2f8673c2f678ad6b5d125b15ca37b
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "ksonnet" "0.13.1-151" --checksum aae808c3b053381c23ca11ce24303a489129ff509c827f25e1ba4fce2797bb40
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "helm" "3.9.2-0" --checksum 48618accb2aad08762e8b5aadbe66f4a63fa449467038ed8629958ecf8f420db
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.14.0-152" --checksum 0c751c7e2ec0bc900a19dbec0306d6294fe744ddfb0fa64197ba1a36040092f0
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "argo-cd" "2.4.7-0" --checksum f414ed51bc626b748f017f01e9f66d0e7d87d5ff377b8f62cc95c718b0edde09
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "argo-cd" "2.4.8-0" --checksum ca24c8196dace1244a2a1f02a3768ee7fc6b2a9d04eaf18ace6ac975f8d78866
RUN apt-get update && apt-get upgrade -y && \
rm -r /var/lib/apt/lists /var/cache/apt/archives
RUN chmod g+rwX /opt/bitnami
COPY rootfs /
RUN /opt/bitnami/scripts/argo-cd/postunpack.sh
ENV APP_VERSION="2.4.7" \
ENV APP_VERSION="2.4.8" \
BITNAMI_APP_NAME="argo-cd" \
PATH="/opt/bitnami/kustomize/bin:/opt/bitnami/ksonnet/bin:/opt/bitnami/helm/bin:/opt/bitnami/common/bin:/opt/bitnami/argo-cd/bin:/opt/bitnami/argo-cd/hack:$PATH"

View File

@ -1,10 +1,10 @@
{
"argo-cd": {
"arch": "amd64",
"digest": "f414ed51bc626b748f017f01e9f66d0e7d87d5ff377b8f62cc95c718b0edde09",
"digest": "ca24c8196dace1244a2a1f02a3768ee7fc6b2a9d04eaf18ace6ac975f8d78866",
"distro": "debian-11",
"type": "NAMI",
"version": "2.4.7-0"
"version": "2.4.8-0"
},
"gosu": {
"arch": "amd64",
@ -29,9 +29,9 @@
},
"kustomize": {
"arch": "amd64",
"digest": "03e1413bed0ba2d68e2cba2e0a1a7d319dd635034d625220bd66c7c40b77c575",
"digest": "16c565a0527f60dc812f71ac20ddea07d0c2f8673c2f678ad6b5d125b15ca37b",
"distro": "debian-11",
"type": "NAMI",
"version": "4.5.5-151"
"version": "4.5.6-0"
}
}

View File

@ -17,7 +17,7 @@ $ docker run -it --name argo-cd bitnami/argo-cd
### Docker Compose
```console
$ curl -sSL https://raw.githubusercontent.com/bitnami/bitnami-docker-argo-cd/master/docker-compose.yml > docker-compose.yml
$ curl -sSL https://raw.githubusercontent.com/bitnami/containers/main/bitnami/argo-cd/docker-compose.yml > docker-compose.yml
$ docker-compose up -d
```
@ -35,9 +35,9 @@ $ docker-compose up -d
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/).
* [`2`, `2-debian-11`, `2.4.7`, `2.4.7-debian-11-r6`, `latest` (2/debian-11/Dockerfile)](https://github.com/bitnami/bitnami-docker-argo-cd/blob/2.4.7-debian-11-r6/2/debian-11/ Dockerfile)
* [`2`, `2-debian-11`, `2.4.8`, `2.4.8-debian-11-r0`, `latest` (2/debian-11/Dockerfile)](https://github.com/bitnami/containers/blob/main/bitnami/argo-cd/2/debian-11/ Dockerfile)
Subscribe to project updates by watching the [bitnami/argo-cd GitHub repo](https://github.com/bitnami/bitnami-docker-argo-cd).
Subscribe to project updates by watching the [bitnami/containers GitHub repo](https://github.com/bitnami/containers).
## Get this image
@ -53,10 +53,12 @@ To use a specific version, you can pull a versioned tag. You can view the [list
$ docker pull bitnami/argo-cd:[TAG]
```
If you wish, you can also build the image yourself.
If you wish, you can also build the image yourself by cloning the repository, changing to the directory containing the Dockerfile and executing the `docker build` command. Remember to replace the `APP`, `VERSION` and `OPERATING-SYSTEM` path placeholders in the example command below with the correct values.
```console
$ docker build -t bitnami/argo-cd:latest 'https://github.com/bitnami/bitnami-docker-argo-cd.git#master:2/debian-11'
$ git clone https://github.com/bitnami/containers.git
$ cd bitnami/APP/VERSION/OPERATING-SYSTEM
$ docker build -t bitnami/APP:latest .
```
## Maintenance
@ -113,18 +115,11 @@ Check the [official Argo CD documentation](https://argo-cd.readthedocs.io/en/sta
## 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-cd/issues), or submit a [pull request](https://github.com/bitnami/bitnami-docker-argo-cd/pulls) with your contribution.
We'd love for you to contribute to this Docker image. You can request new features by creating an [issue](https://github.com/bitnami/containers/issues), or submit a [pull request](https://github.com/bitnami/containers/pulls) with your contribution.
## Issues
If you encountered a problem running this container, you can file an [issue](https://github.com/bitnami/bitnami-docker-argo-cd/issues/new). For us to provide better support, be sure to include the following information in your issue:
- Host OS and version
- Docker version (`docker version`)
- Output of `docker info`
- Version of this container
- The command you used to run the container, and any relevant output you saw (masking any sensitive
information)
If you encountered a problem running this container, you can file an [issue](https://github.com/bitnami/containers/issues/new/choose). For us to provide better support, be sure to fill the issue template.
## License